mirror of
https://github.com/data-privacy-stack/presidio.git
synced 2026-07-23 11:20:55 -05:00
114 lines
1.2 KiB
Plaintext
114 lines
1.2 KiB
Plaintext
# Development and Testing Files
|
|
tests/
|
|
*.test
|
|
.pytest_cache/
|
|
.coverage
|
|
.coverage.*
|
|
htmlcov/
|
|
.tox/
|
|
.cache
|
|
nosetests.xml
|
|
coverage.xml
|
|
*.cover
|
|
.hypothesis/
|
|
|
|
# Development Tools and IDE Configurations
|
|
.vscode/
|
|
.idea/
|
|
.spyderproject
|
|
.spyproject
|
|
.ropeproject
|
|
|
|
# Documentation
|
|
*.md
|
|
|
|
# Package Management (keep pyproject.toml, exclude lock files)
|
|
Pipfile
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|
|
|
|
# Python Build Artifacts and Cache
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Environment and Virtual Environment Files
|
|
.env
|
|
.env.*
|
|
.venv
|
|
env/
|
|
venv/
|
|
ENV/
|
|
env.bak/
|
|
venv.bak/
|
|
*venv/
|
|
|
|
# OS and System Files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
*.tmp
|
|
*.temp
|
|
|
|
# Git and Version Control
|
|
.git/
|
|
.gitignore
|
|
.gitattributes
|
|
|
|
# Logs and Temporary Files
|
|
*.log
|
|
*.out
|
|
debug.test
|
|
debug
|
|
|
|
# PyInstaller
|
|
*.manifest
|
|
*.spec
|
|
|
|
# Jupyter Notebook
|
|
.ipynb_checkpoints
|
|
|
|
# Translations
|
|
*.mo
|
|
*.pot
|
|
|
|
# mypy
|
|
.mypy_cache/
|
|
.dmypy.json
|
|
dmypy.json
|
|
|
|
# Editor backups
|
|
*~
|
|
*.swp
|
|
*.swo
|
|
|
|
# Local configuration that shouldn't be in containers
|
|
local_settings.py
|
|
|
|
deploytoazure.json
|
|
install_dependencies.sh
|
|
|