.gitignore 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. Pipfile.lock
  2. # Byte-compiled / optimized / DLL files
  3. *.py[cod]
  4. __pycache__/
  5. *$py.class
  6. # C extensions
  7. *.so
  8. # Distribution / packaging
  9. .Python
  10. build/
  11. develop-eggs/
  12. dist/
  13. downloads/
  14. eggs/
  15. .eggs/
  16. lib/
  17. lib64/
  18. parts/
  19. sdist/
  20. var/
  21. wheels/
  22. *.egg-info/
  23. .installed.cfg
  24. *.egg
  25. MANIFEST
  26. # PyInstaller
  27. # Usually these files are written by a python script from a template
  28. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  29. *.manifest
  30. *.spec
  31. # Installer logs
  32. pip-log.txt
  33. pip-delete-this-directory.txt
  34. # Unit test / coverage reports
  35. htmlcov/
  36. .tox/
  37. .coverage
  38. .coverage.*
  39. .cache
  40. nosetests.xml
  41. coverage.xml
  42. *.cover
  43. .hypothesis/
  44. .pytest_cache/
  45. # Translations
  46. *.mo
  47. *.pot
  48. # Django stuff:
  49. *.log
  50. local_settings.py
  51. db.sqlite3
  52. # Flask stuff:
  53. instance/
  54. .webassets-cache
  55. # Scrapy stuff:
  56. .scrapy
  57. # Sphinx documentation
  58. docs/_build/
  59. # PyBuilder
  60. target/
  61. # Jupyter Notebook
  62. .ipynb_checkpoints
  63. # pyenv
  64. .python-version
  65. # celery beat schedule file
  66. celerybeat-schedule
  67. # SageMath parsed files
  68. *.sage.py
  69. # Environments
  70. .venv
  71. env/
  72. venv/
  73. ENV/
  74. env.bak/
  75. venv.bak/
  76. # Spyder project settings
  77. .spyderproject
  78. .spyproject
  79. # Rope project settings
  80. .ropeproject
  81. # mkdocs documentation
  82. /site
  83. # mypy
  84. .mypy_cache/
  85. # IntelliJ / PyCharm
  86. .idea/
  87. *~