|
@@ -1,25 +1,37 @@
|
|
|
|
|
+### Python ###
|
|
|
# Byte-compiled / optimized / DLL files
|
|
# Byte-compiled / optimized / DLL files
|
|
|
__pycache__/
|
|
__pycache__/
|
|
|
*.py[cod]
|
|
*.py[cod]
|
|
|
|
|
+*$py.class
|
|
|
|
|
|
|
|
# C extensions
|
|
# C extensions
|
|
|
*.so
|
|
*.so
|
|
|
|
|
|
|
|
# Distribution / packaging
|
|
# Distribution / packaging
|
|
|
.Python
|
|
.Python
|
|
|
-env/
|
|
|
|
|
build/
|
|
build/
|
|
|
develop-eggs/
|
|
develop-eggs/
|
|
|
dist/
|
|
dist/
|
|
|
|
|
+downloads/
|
|
|
eggs/
|
|
eggs/
|
|
|
|
|
+.eggs/
|
|
|
lib/
|
|
lib/
|
|
|
lib64/
|
|
lib64/
|
|
|
parts/
|
|
parts/
|
|
|
sdist/
|
|
sdist/
|
|
|
var/
|
|
var/
|
|
|
|
|
+wheels/
|
|
|
|
|
+share/python-wheels/
|
|
|
*.egg-info/
|
|
*.egg-info/
|
|
|
.installed.cfg
|
|
.installed.cfg
|
|
|
*.egg
|
|
*.egg
|
|
|
|
|
+MANIFEST
|
|
|
|
|
+
|
|
|
|
|
+# 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
|
|
# Installer logs
|
|
|
pip-log.txt
|
|
pip-log.txt
|
|
@@ -28,10 +40,15 @@ pip-delete-this-directory.txt
|
|
|
# Unit test / coverage reports
|
|
# Unit test / coverage reports
|
|
|
htmlcov/
|
|
htmlcov/
|
|
|
.tox/
|
|
.tox/
|
|
|
|
|
+.nox/
|
|
|
.coverage
|
|
.coverage
|
|
|
|
|
+.coverage.*
|
|
|
.cache
|
|
.cache
|
|
|
nosetests.xml
|
|
nosetests.xml
|
|
|
coverage.xml
|
|
coverage.xml
|
|
|
|
|
+*.cover
|
|
|
|
|
+.hypothesis/
|
|
|
|
|
+.pytest_cache/
|
|
|
|
|
|
|
|
# Translations
|
|
# Translations
|
|
|
*.mo
|
|
*.mo
|
|
@@ -39,9 +56,71 @@ coverage.xml
|
|
|
|
|
|
|
|
# Django stuff:
|
|
# Django stuff:
|
|
|
*.log
|
|
*.log
|
|
|
|
|
+local_settings.py
|
|
|
|
|
+db.sqlite3
|
|
|
|
|
+
|
|
|
|
|
+# Flask stuff:
|
|
|
|
|
+instance/
|
|
|
|
|
+.webassets-cache
|
|
|
|
|
+
|
|
|
|
|
+# Scrapy stuff:
|
|
|
|
|
+.scrapy
|
|
|
|
|
|
|
|
# Sphinx documentation
|
|
# Sphinx documentation
|
|
|
docs/_build/
|
|
docs/_build/
|
|
|
|
|
|
|
|
|
|
+# PyBuilder
|
|
|
|
|
+target/
|
|
|
|
|
+
|
|
|
|
|
+# Jupyter Notebook
|
|
|
|
|
+.ipynb_checkpoints
|
|
|
|
|
+
|
|
|
|
|
+# IPython
|
|
|
|
|
+profile_default/
|
|
|
|
|
+ipython_config.py
|
|
|
|
|
+
|
|
|
|
|
+# pyenv
|
|
|
|
|
+.python-version
|
|
|
|
|
+
|
|
|
|
|
+# celery beat schedule file
|
|
|
|
|
+celerybeat-schedule
|
|
|
|
|
+
|
|
|
|
|
+# SageMath parsed files
|
|
|
|
|
+*.sage.py
|
|
|
|
|
+
|
|
|
|
|
+# Environments
|
|
|
|
|
+.env
|
|
|
|
|
+.venv
|
|
|
|
|
+env/
|
|
|
|
|
+venv/
|
|
|
|
|
+ENV/
|
|
|
|
|
+env.bak/
|
|
|
|
|
+venv.bak/
|
|
|
|
|
+
|
|
|
|
|
+# Spyder project settings
|
|
|
|
|
+.spyderproject
|
|
|
|
|
+.spyproject
|
|
|
|
|
+
|
|
|
|
|
+# Rope project settings
|
|
|
|
|
+.ropeproject
|
|
|
|
|
+
|
|
|
|
|
+# mkdocs documentation
|
|
|
|
|
+/site
|
|
|
|
|
+
|
|
|
|
|
+# mypy
|
|
|
|
|
+.mypy_cache/
|
|
|
|
|
+.dmypy.json
|
|
|
|
|
+dmypy.json
|
|
|
|
|
+
|
|
|
|
|
+# Pyre type checker
|
|
|
|
|
+.pyre/
|
|
|
|
|
+
|
|
|
|
|
+### Python Patch ###
|
|
|
|
|
+.venv/
|
|
|
|
|
+
|
|
|
# IPython notebook checkpoints
|
|
# IPython notebook checkpoints
|
|
|
-.ipynb_checkpoints/
|
|
|
|
|
|
|
+.ipynb_checkpoints
|
|
|
|
|
+*/.ipynb_checkpoints/*
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
|
|
+*.swp
|