.gitignore 1021 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. flagged
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # Poetry-specific files
  7. .poetry/
  8. # Virtual environment
  9. # If you are using a virtual environment created by Poetry inside the project directory.
  10. # Uncomment if using virtualenvs.in-project=true in pyproject.toml
  11. # .venv/
  12. # Distribution / packaging
  13. build/
  14. dist/
  15. *.egg-info/
  16. *.egg
  17. # Installer logs
  18. pip-log.txt
  19. pip-delete-this-directory.txt
  20. # PyInstaller
  21. # Usually these files are written to this folder when PyInstaller is used to package a Python project
  22. *.manifest
  23. *.spec
  24. # Unit test / coverage reports
  25. htmlcov/
  26. .tox/
  27. .nox/
  28. coverage.xml
  29. *.cover
  30. *.py,cover
  31. .hypothesis/
  32. .pytest_cache/
  33. nosetests.xml
  34. # Jupyter Notebook
  35. .ipynb_checkpoints/
  36. # pyenv
  37. # This file includes specific Python version, ignore if irrelevant
  38. .python-version
  39. # dotenv
  40. .env
  41. .env.*
  42. # Editor-specific files
  43. .vscode/
  44. .idea/
  45. *.sublime-project
  46. *.sublime-workspace
  47. # macOS files
  48. .DS_Store
  49. # Windows files
  50. Thumbs.db
  51. desktop.ini
  52. # Python virtual environments
  53. venv/