1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # Byte-compiled / optimized / DLL files
- __pycache__/
- *.py[cod]
- # C extensions
- *.so
- # Distribution / packaging
- .Python
- env/
- 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
- .cache
- nosetests.xml
- coverage.xml
- # Translations
- *.mo
- # Pycharm
- .idea
- # Mr Developer
- .mr.developer.cfg
- .project
- .pydevproject
- # Rope
- .ropeproject
- # Sphinx documentation
- docs/_build/
- # Backup files
- *~
- *.swp
|