diff --git a/.gitignore b/.gitignore index 9a5aced..90f8fbb 100644 --- a/.gitignore +++ b/.gitignore @@ -1,139 +1,176 @@ -# Logs -logs +# Created by https://www.toptal.com/developers/gitignore/api/python +# Edit at https://www.toptal.com/developers/gitignore?templates=python + +### Python ### +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# 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 + +# 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/ +.nox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +*.py,cover +.hypothesis/ +.pytest_cache/ +cover/ + +# Translations +*.mo +*.pot + +# Django stuff: *.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* -lerna-debug.log* +local_settings.py +db.sqlite3 +db.sqlite3-journal -# Diagnostic reports (https://nodejs.org/api/report.html) -report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json +# Flask stuff: +instance/ +.webassets-cache -# Runtime data -pids -*.pid -*.seed -*.pid.lock +# Scrapy stuff: +.scrapy -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov +# Sphinx documentation +docs/_build/ -# Coverage directory used by tools like istanbul -coverage -*.lcov +# PyBuilder +.pybuilder/ +target/ -# nyc test coverage -.nyc_output +# Jupyter Notebook +.ipynb_checkpoints -# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) -.grunt +# IPython +profile_default/ +ipython_config.py -# Bower dependency directory (https://bower.io/) -bower_components +# pyenv +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version -# node-waf configuration -.lock-wscript +# pipenv +# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. +# However, in case of collaboration, if having platform-specific dependencies or dependencies +# having no cross-platform support, pipenv may install dependencies that don't work, or not +# install all needed dependencies. +#Pipfile.lock -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock -# Dependency directories -node_modules/ -jspm_packages/ +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml -# Snowpack dependency directory (https://snowpack.dev/) -web_modules/ +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm +__pypackages__/ -# TypeScript cache -*.tsbuildinfo +# Celery stuff +celerybeat-schedule +celerybeat.pid -# Optional npm cache directory -.npm +# SageMath parsed files +*.sage.py -# Optional eslint cache -.eslintcache - -# Optional stylelint cache -.stylelintcache - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variable files +# Environments .env -.env.* -!.env.example +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ -# parcel-bundler cache (https://parceljs.org/) -.cache -.parcel-cache +# Spyder project settings +.spyderproject +.spyproject -# Next.js build output -.next -out +# Rope project settings +.ropeproject -# Nuxt.js build / generate output -.nuxt -dist +# mkdocs documentation +/site -# Gatsby files -.cache/ -# Comment in the public line in if your project uses Gatsby and not Next.js -# https://nextjs.org/blog/next-9-1#public-directory-support -# public +# mypy +.mypy_cache/ +.dmypy.json +dmypy.json -# vuepress build output -.vuepress/dist +# Pyre type checker +.pyre/ -# vuepress v2.x temp and cache directory -.temp -.cache +# pytype static type analyzer +.pytype/ -# Sveltekit cache directory -.svelte-kit/ +# Cython debug symbols +cython_debug/ -# vitepress build output -**/.vitepress/dist +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ -# vitepress cache directory -**/.vitepress/cache +### Python Patch ### +# Poetry local configuration file - https://python-poetry.org/docs/configuration/#local-configuration +poetry.toml -# Docusaurus cache and generated files -.docusaurus +# ruff +.ruff_cache/ -# Serverless directories -.serverless/ +# LSP config files +pyrightconfig.json -# FuseBox cache -.fusebox/ - -# DynamoDB Local files -.dynamodb/ - -# Firebase cache directory -.firebase/ - -# TernJS port file -.tern-port - -# Stores VSCode versions used for testing VSCode extensions -.vscode-test - -# yarn v3 -.pnp.* -.yarn/* -!.yarn/patches -!.yarn/plugins -!.yarn/releases -!.yarn/sdks -!.yarn/versions - -# Vite logs files -vite.config.js.timestamp-* -vite.config.ts.timestamp-* +# End of https://www.toptal.com/developers/gitignore/api/python \ No newline at end of file