
################################################################################################
###   Python   ---------------------------------------------------------------------------------

# Python Virtual Environment & Pixi
env/
venv/
shell/
.env/
.venv/
.pixi
*.egg-info

# Python Version should conform to Pipfile package versions. Prefer them to be tracked and syncronized
#.python-version

# Pipfile AND pipenv
#   According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. However,
#   if having platform-specific dependencies or dependencies having no cross-platform support,
#   pipenv may install dependencies that don't work, or omit some required dependencies.
#Pipfile.lock

# Unit Test
.pytest_cache/

# Python Virtual Environment -- More

# Unit Test / Coverage -  More
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
.hypothesis/

# Byte-code / optimized / DLL files
*.py[cod]

__pycache__/
*$py.class

# C extensions
*.so

# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

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

# Translations
*.mo
*.pot

# Scrapy stuff:
.scrapy

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# celery beat schedule file
celerybeat-schedule

# mkdocs documentation
/site

# mypy
.mypy_cache/
.dmypy.json
dmypy.json

# Pyre type checker
.pyre/

################################################################################################
###   Tools:  Coverage  ------------------------------------------------------------------------

htmlReport/

################################################################################################
###   IDEs:  JetBrains  ------------------------------------------------------------------------

.cadence
.fleet
.idea
.run
*.iml
*.ipr

################################################################################################
###   IDEs:  Visual Studio Code  ---------------------------------------------------------------

.vscode

################################################################################################
###   Common: Git, Log-s, Tmp ------------------------------------------------------------------

.git
*.log
.lock.*
.~lock.*
*.tmp

################################################################################################
###   Other ------------------------------------------------------------------------------------

.cli3
.directory
.other
.sync

