.gitignore 1.8 KB

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