diff options
| author | Colin Wilk <colin.wilk@tum.de> | 2023-10-09 12:06:33 +0200 |
|---|---|---|
| committer | Colin Wilk <colin.wilk@tum.de> | 2023-10-09 12:58:13 +0200 |
| commit | f7a1dfc655971b279749232665bd468ffebd5c2e (patch) | |
| tree | 1112dc0f52bbd502d322dba24366bb7107989ab9 | |
| parent | 4a02c065a2f06ea6350ddcda122217dfa6ded105 (diff) | |
| download | szuruboorupy-f7a1dfc655971b279749232665bd468ffebd5c2e.tar.gz szuruboorupy-f7a1dfc655971b279749232665bd468ffebd5c2e.zip | |
Add generic python project .gitignore from github
Signed-off-by: Colin Wilk <colin.wilk@tum.de>
| -rw-r--r-- | .gitignore | 104 |
1 files changed, 102 insertions, 2 deletions
@@ -1,3 +1,103 @@ -__pycache__ -.pytype +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# Unit test / coverage reports +htmlcov/ +.tox/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +.pybuilder/ +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# IPython +profile_default/ +ipython_config.py + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ + +# Celery stuff +celerybeat-schedule +celerybeat.pid + +# 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/ + +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ |