1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- # vim swp files
- *.swp
- # Byte-compiled / optimized / DLL files
- __pycache__/
- *.py[cod]
- # C extensions
- *.so
- # Distribution / packaging
- .Python
- env/
- bin/
- build/
- develop-eggs/
- eggs/
- lib/
- lib64/
- parts/
- sdist/
- var/
- *.egg-info/
- .installed.cfg
- *.egg
- # Twisted plugins cache
- test_server/twisted/plugins/dropin.cache
- # local node_modules
- node_modules/
- # Installer logs
- pip-log.txt
- pip-delete-this-directory.txt
- # Unit test / coverage reports
- htmlcov/
- .tox/
- .coverage
- .cache
- nosetests.xml
- coverage.xml
- # Translations
- *.mo
- # Mr Developer
- .mr.developer.cfg
- .project
- .pydevproject
- # Rope
- .ropeproject
- # Django stuff:
- *.log
- *.pot
- # Sphinx documentation
- docs/_build/
|