powrap/.gitignore

114 lines
1.6 KiB
Plaintext
Raw Permalink Normal View History

2019-12-10 09:09:21 +00:00
# Created by https://www.gitignore.io/api/python
# Edit at https://www.gitignore.io/?templates=python
### Python ###
2017-05-24 20:36:06 +00:00
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
2019-12-10 09:09:21 +00:00
wheels/
pip-wheel-metadata/
share/python-wheels/
2017-05-24 20:36:06 +00:00
*.egg-info/
.installed.cfg
*.egg
2019-12-10 09:09:21 +00:00
MANIFEST
2017-05-24 20:36:06 +00:00
# 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
htmlcov/
.tox/
2019-12-10 09:09:21 +00:00
.nox/
2017-05-24 20:36:06 +00:00
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
2019-12-10 09:09:21 +00:00
*.cover
2017-05-24 20:36:06 +00:00
.hypothesis/
2019-12-10 09:09:21 +00:00
.pytest_cache/
2017-05-24 20:36:06 +00:00
# Translations
*.mo
*.pot
2019-12-10 09:09:21 +00:00
# Scrapy stuff:
.scrapy
2017-05-24 20:36:06 +00:00
# Sphinx documentation
docs/_build/
# PyBuilder
target/
2019-12-10 09:09:21 +00:00
# pyenv
2017-05-24 20:36:06 +00:00
.python-version
2019-11-26 21:32:47 +00:00
2019-12-10 09:09:21 +00:00
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# celery beat schedule file
celerybeat-schedule
# SageMath parsed files
*.sage.py
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# Mr Developer
.mr.developer.cfg
.project
.pydevproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
# End of https://www.gitignore.io/api/python
/venv
.venv/