aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjwansek <37976823+jwansek@users.noreply.github.com>2018-04-11 21:00:00 +0100
committerGitHub <noreply@github.com>2018-04-11 21:00:00 +0100
commit249a540fd58d0db45d35549bd194f0a9e0850964 (patch)
treeff50bd40364a111ff07b4779eb3d88e935a9722e
parent51c62aaa05fec694afb07a0f9978e6683e9fd41b (diff)
downloadeehph2-249a540fd58d0db45d35549bd194f0a9e0850964.tar.gz
eehph2-249a540fd58d0db45d35549bd194f0a9e0850964.zip
Added .gitignore
-rw-r--r--.gitignore106
1 files changed, 106 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..35fd314
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,106 @@
+/on_install_setup/build
+/on_install_setup/dist
+/on_install_setup/__pycache__
+
+#stuff below here is a template
+# Byte-compiled / optimized / DLL files
+__pycache__/
+*.py[cod]
+*$py.class
+
+# C extensions
+*.so
+
+# Distribution / packaging
+.Python
+env/
+build/
+develop-eggs/
+dist/
+downloads/
+eggs/
+.eggs/
+lib/
+lib64/
+parts/
+sdist/
+var/
+wheels/
+*.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
+htmlcov/
+.tox/
+.coverage
+.coverage.*
+.cache
+nosetests.xml
+coverage.xml
+*.cover
+.hypothesis/
+
+# Translations
+*.mo
+*.pot
+
+# Django stuff:
+*.log
+local_settings.py
+
+# Flask stuff:
+instance/
+.webassets-cache
+
+# Scrapy stuff:
+.scrapy
+
+# Sphinx documentation
+docs/_build/
+
+# PyBuilder
+target/
+
+# Jupyter Notebook
+.ipynb_checkpoints
+
+# pyenv
+.python-version
+
+# celery beat schedule file
+celerybeat-schedule
+
+# SageMath parsed files
+*.sage.py
+
+# dotenv
+.env
+
+# virtualenv
+.venv
+venv/
+ENV/
+
+# Spyder project settings
+.spyderproject
+.spyproject
+
+# Rope project settings
+.ropeproject
+
+# mkdocs documentation
+/site
+
+# mypy
+.mypy_cache/