.gitignore 2.1 KB

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