Created
January 9, 2024 08:41
-
-
Save cagatayuresin/69672d4537c19ae0f4c8cf354e8cd4ec to your computer and use it in GitHub Desktop.
Ultimate Python Related Projects' gitignore File
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Ultimate Python Related Projects' gitignore File | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| share/python-wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| MANIFEST | |
| pip-log.txt | |
| pip-delete-this-directory.txt | |
| htmlcov/ | |
| .tox/ | |
| .nox/ | |
| .coverage | |
| .coverage.* | |
| .cache | |
| nosetests.xml | |
| coverage.xml | |
| *.cover | |
| *.py,cover | |
| .hypothesis/ | |
| .pytest_cache/ | |
| cover/ | |
| *.mo | |
| *.pot | |
| __pypackages__/ | |
| *.manifest | |
| *.spec | |
| *.log | |
| local_settings.py | |
| db.sqlite3 | |
| db.sqlite3-journal | |
| instance/ | |
| .webassets-cache | |
| .scrapy | |
| docs/_build/ | |
| .pybuilder/ | |
| target/ | |
| .ipynb_checkpoints | |
| profile_default/ | |
| ipython_config.py | |
| .pdm.toml | |
| celerybeat-schedule | |
| celerybeat.pid | |
| *.sage.py | |
| .env | |
| .venv | |
| env/ | |
| venv/ | |
| ENV/ | |
| env.bak/ | |
| venv.bak/ | |
| .spyderproject | |
| .spyproject | |
| .ropeproject | |
| /site | |
| .mypy_cache/ | |
| .dmypy.json | |
| dmypy.json | |
| .pyre/ | |
| .pytype/ | |
| cython_debug/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment