Skip to content
This repository was archived by the owner on Mar 26, 2026. It is now read-only.
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
5 changes: 5 additions & 0 deletions .env.copy
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# API token for the PyPI prod server.
POETRY_PYPI_TOKEN_PYPI=

# API token for the PyPI test server.
POETRY_PYPI_TOKEN_PYPI_TEST=
79 changes: 59 additions & 20 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,30 +1,69 @@
# Ignore build directories
/ignore

# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class

# C extensions
*.so

# Distribution / packaging
.env
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover
.hypothesis/
.napari_cache

# Translations
*.mo
*.pot

# Ignore Sphinx doc build
# Sphinx documentation
docs/_build/

# Ignore IntelliJ IDEA directory and project files
.idea
*.iml
# MkDocs documentation
/site/

*.sync
#Ignore these hidden files from Mac OS X
.DS_Store
# PyBuilder
target/

#Ignore dir created during install
readlif.egg-info
# Pycharm and VSCode
.idea/
venv/

#Ignore all compiled python files (e.g. from running the unit tests):
*.pyc
*.pyo
# Jupyter notebook checkpoints
.ipynb_checkpoints

#Ignore testing files
ignore.py
.tox
.coverage
htmlcov
# pyenv
.python-version

#Ignore testing files that I don't have permission to share
tests/private/*
# OS
.DS_Store
Loading