123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- # Backup files
- *.bak
- # Distribution / packaging
- *.egg
- *.egg-info/
- *.manifest
- *.spec
- .Python build/
- .eggs/
- .installed.cfg
- develop-eggs/
- dist/
- downloads/
- eggs/
- lib/
- lib64/
- parts/
- sdist/
- var/
- wheels/
- # Django
- *.log
- *.pot
- *.pyc
- /staticfiles
- __pycache__
- db.sqlite3
- media
- # Environments
- .venv
- /.env
- /local
- ENV/
- env.bak/
- env/
- venv
- venv.bak/
- venv/
- # IDEs
- .DS_Store
- .idea
- .vscode
- # Installer logs
- pip-delete-this-directory.txt
- pip-log.txt
- # mypy
- .mypy_cache
- # pyenv
- .python-version
- # pytest
- .pytest_cache
- # Python
- *$py.class
- *.py[cod]
- # Unit test / coverage reports
- *.cover
- .cache
- .coverage
- .coverage.*
- .hypothesis/
- .pytest_cache/
- .tox/
- coverage.xml
- htmlcov/
- nosetests.xml
|