diff options
author | MIQUELLIONEL <40854688+MIQUELLIONEL@users.noreply.github.com> | 2018-10-20 10:32:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-20 10:32:45 +0200 |
commit | 9926b7a86b00f2c2a1fe6b9910a88e1088a17df0 (patch) | |
tree | b483f934898dc2359270da14b1ea11d9c4643ca7 | |
parent | 267f81b160f4ebd67e2edd15456b15d1f9cd10e7 (diff) | |
download | randopitons-9926b7a86b00f2c2a1fe6b9910a88e1088a17df0.tar.gz randopitons-9926b7a86b00f2c2a1fe6b9910a88e1088a17df0.zip |
Create .gitignore
-rw-r--r-- | .gitignore | 105 |
1 files changed, 105 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5356811 --- /dev/null +++ b/.gitignore @@ -0,0 +1,105 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class +*.pyc + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.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 +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# 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 + +# 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/ |