Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Python
__pycache__/
*.py[cod]
*.egg-info/
*.egg
build/
dist/
.venv/
venv/
.pytest_cache/

# Local data / secrets
*.sqlite
*.sqlite-journal
.env
*.key
.claude/*.key
.claude/*.endpoint

# Built Apptainer images (large; rebuild from static/apptainer/*.def).
# The definition files and build scripts ARE tracked; the .sif images are not.
*.sif
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ odda = "odda_utils.main:main"
where = ["src"]

[tool.setuptools.package-data]
odda_utils = ["static/*"]
odda_utils = ["static/*", "static/apptainer/*.def", "static/apptainer/*.sh"]

[tool.setuptools.dynamic]
version = {attr = "odda_utils.__version__"}
Expand Down
Loading