diff --git a/.gitignore b/.gitignore index 345e61a..eb66b56 100644 --- a/.gitignore +++ b/.gitignore @@ -1,49 +1,105 @@ -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm -# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class -# User-specific stuff: -.idea/**/workspace.xml -.idea/**/tasks.xml -.idea/dictionaries +# C extensions +*.so -# Sensitive or high-churn files: -.idea/**/dataSources/ -.idea/**/dataSources.ids -.idea/**/dataSources.xml -.idea/**/dataSources.local.xml -.idea/**/sqlDataSources.xml -.idea/**/dynamic.xml -.idea/**/uiDesigner.xml +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST -# Gradle: -.idea/**/gradle.xml -.idea/**/libraries +# 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 -# CMake -cmake-build-debug/ +# Installer logs +pip-log.txt +pip-delete-this-directory.txt -# Mongo Explorer plugin: -.idea/**/mongoSettings.xml +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ -## File-based project format: -*.iws +# Translations +*.mo +*.pot -## Plugin-specific files: +# Django stuff: +*.log +.static_storage/ +.media/ +local_settings.py -# IntelliJ -out/ +# Flask stuff: +instance/ +.webassets-cache -# mpeltonen/sbt-idea plugin -.idea_modules/ +# Scrapy stuff: +.scrapy -# JIRA plugin -atlassian-ide-plugin.xml +# Sphinx documentation +docs/_build/ -# Cursive Clojure plugin -.idea/replstate.xml +# PyBuilder +target/ -# Crashlytics plugin (for Android Studio and IntelliJ) -com_crashlytics_export_strings.xml -crashlytics.properties -crashlytics-build.properties -fabric.properties +# Jupyter Notebook +.ipynb_checkpoints + +# 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/ \ No newline at end of file