.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. # Byte-compiled / optimized / DLL files
  2. __pycache__/
  3. *.py[cod]
  4. *$py.class
  5. # C extensions
  6. *.so
  7. # Distribution / packaging
  8. .Python
  9. build/
  10. develop-eggs/
  11. dist/
  12. downloads/
  13. eggs/
  14. .eggs/
  15. lib/
  16. lib64/
  17. parts/
  18. sdist/
  19. var/
  20. wheels/
  21. pip-wheel-metadata/
  22. share/python-wheels/
  23. *.egg-info/
  24. .installed.cfg
  25. *.egg
  26. MANIFEST
  27. # PyInstaller
  28. # Usually these files are written by a python script from a template
  29. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  30. *.manifest
  31. *.spec
  32. # Installer logs
  33. pip-log.txt
  34. pip-delete-this-directory.txt
  35. # Unit test / coverage reports
  36. htmlcov/
  37. .tox/
  38. .nox/
  39. .coverage
  40. .coverage.*
  41. .cache
  42. nosetests.xml
  43. coverage.xml
  44. *.cover
  45. .hypothesis/
  46. .pytest_cache/
  47. # Translations
  48. *.mo
  49. *.pot
  50. # Django stuff:
  51. *.log
  52. local_settings.py
  53. db.sqlite3
  54. db.sqlite3-journal
  55. # Flask stuff:
  56. instance/
  57. .webassets-cache
  58. # Scrapy stuff:
  59. .scrapy
  60. # Sphinx documentation
  61. docs/_build/
  62. # PyBuilder
  63. target/
  64. # Jupyter Notebook
  65. .ipynb_checkpoints
  66. # IPython
  67. profile_default/
  68. ipython_config.py
  69. # pyenv
  70. .python-version
  71. # pipenv
  72. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  73. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  74. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  75. # install all needed dependencies.
  76. #Pipfile.lock
  77. # celery beat schedule file
  78. celerybeat-schedule
  79. # SageMath parsed files
  80. *.sage.py
  81. # Environments
  82. .env
  83. .venv
  84. env/
  85. venv/
  86. ENV/
  87. env.bak/
  88. venv.bak/
  89. # Spyder project settings
  90. .spyderproject
  91. .spyproject
  92. # Rope project settings
  93. .ropeproject
  94. # mkdocs documentation
  95. /site
  96. # mypy
  97. .mypy_cache/
  98. .dmypy.json
  99. dmypy.json
  100. # Pyre type checker
  101. .pyre/