python-dependency-injector/.gitignore

78 lines
1023 B
Plaintext
Raw Permalink Normal View History

2015-01-04 16:23:05 +03:00
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
# 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
# Unit test / coverage reports
reports/
2015-01-04 16:23:05 +03:00
.tox/
.coverage
.cache
nosetests.xml
coverage.xml
.hypothesis/
2015-01-04 16:23:05 +03:00
# Translations
*.mo
*.pot
# Django stuff:
*.log
# Sphinx documentation
docs/_build/
# PyBuilder
target/
2015-01-04 16:30:20 +03:00
# PyCharm
.idea/
# Virtualenv
venv*/
2015-01-04 16:54:25 +03:00
# SQLite
*.db
2015-03-27 02:28:40 +03:00
2015-07-06 16:53:09 +03:00
# Vim Rope
.ropeproject/
# C extensions
2016-11-15 15:19:17 +03:00
src/dependency_injector/*.h
2016-11-03 00:20:06 +03:00
src/dependency_injector/*.so
2016-11-15 15:19:17 +03:00
src/dependency_injector/containers/*.h
src/dependency_injector/containers/*.so
src/dependency_injector/providers/*.h
2016-11-03 00:20:06 +03:00
src/dependency_injector/providers/*.so
# Workspace for samples
.workspace/
.vscode/