Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
danellecline committed Nov 13, 2024
0 parents commit ce75eae
Show file tree
Hide file tree
Showing 51 changed files with 3,028 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: New Release
on:
workflow_dispatch:
push:
branches:
- main
jobs:
semantic_release:
runs-on: ubuntu-latest
concurrency: semantic_release
permissions:
id-token: write
contents: write

steps:
- name: Checkout code
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.11'

- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "${HOME}/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: poetry install

- name: Set PYTHONPATH to subdirectory sdcat
run: echo "PYTHONPATH=." >> $GITHUB_ENV
- name: Check release status
id: release-status
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
pip install python-semantic-release
##########################################################################
# Add a --noop flag to check without releasing if adding pypi to next steps
##########################################################################
if semantic-release --strict version
then
echo "Releasing new version."
else
echo "Skipping release steps."
fi
59 changes: 59 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Checkpoings
checkpoints/

# CoTracker source
co-tracker/

# Diagrams
*.graffle

# Log files
*.log

# Secrets
.env

# Model weights
*.pt

# test data
examples/data/
*.tar.gz

# Pycharm
.idea/

# Node artifact files
node_modules/
dist/

# Compiled Python bytecode
*.py[cod]

# JetBrains IDE
.idea/

# Unit test reports
TEST*.xml

# Generated by MacOS
.DS_Store

# Generated by Windows
Thumbs.db

# Applications
*.app
*.exe
*.war

# Large media files
*.mp4
*.tiff
*.avi
*.flv
*.mov
*.wmv

#Mkdocs
docs/site
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# CHANGELOG
Loading

0 comments on commit ce75eae

Please sign in to comment.