diff --git a/src/templates/languages/python.gitignore b/src/templates/languages/python.gitignore new file mode 100644 index 0000000..faa7d53 --- /dev/null +++ b/src/templates/languages/python.gitignore @@ -0,0 +1,81 @@ +# Python +*.py[cod] +*$py.class +*.so +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +pip-wheel-metadata/ +share/python-wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST +*.tar.gz +*.zip + +# Virtual Environments +venv/ +ENV/ +env/ +.venv/ +.env + +# pyenv +.python-version + +# mypy +.mypy_cache/ +dmypy.json +dmypy.py + +# pytest +.pytest_cache/ +.coverage +htmlcov/ + +# Flask +instance/ +.webassets-cache + +# Django +*.log +local_settings.py +db.sqlite3 +media/ + +# Celery +celerybeat-schedule +celerybeat.pid + +# Sphinx +docs/_build/ + +# PyInstaller +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Translations +*.mo +*.pot + +# Django stuff +staticfiles/ +*.pot +.pytest_cache +.coverage +htmlcov/