1
0

.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. # Specific to this Project
  2. db.json
  3. market.json
  4. player.json
  5. config.json
  6. notifications.json
  7. monitor_market.json
  8. plots/
  9. # Byte-compiled / optimized / DLL files
  10. __pycache__/
  11. *.py[cod]
  12. *$py.class
  13. # C extensions
  14. *.so
  15. # Distribution / packaging
  16. .Python
  17. build/
  18. develop-eggs/
  19. dist/
  20. downloads/
  21. eggs/
  22. .eggs/
  23. lib/
  24. lib64/
  25. parts/
  26. sdist/
  27. var/
  28. wheels/
  29. share/python-wheels/
  30. *.egg-info/
  31. .installed.cfg
  32. *.egg
  33. MANIFEST
  34. # PyInstaller
  35. # Usually these files are written by a python script from a template
  36. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  37. *.manifest
  38. *.spec
  39. # Installer logs
  40. pip-log.txt
  41. pip-delete-this-directory.txt
  42. # Unit test / coverage reports
  43. htmlcov/
  44. .tox/
  45. .nox/
  46. .coverage
  47. .coverage.*
  48. .cache
  49. nosetests.xml
  50. coverage.xml
  51. *.cover
  52. *.py,cover
  53. .hypothesis/
  54. .pytest_cache/
  55. cover/
  56. # Translations
  57. *.mo
  58. *.pot
  59. # Django stuff:
  60. *.log
  61. local_settings.py
  62. db.sqlite3
  63. db.sqlite3-journal
  64. # Flask stuff:
  65. instance/
  66. .webassets-cache
  67. # Scrapy stuff:
  68. .scrapy
  69. # Sphinx documentation
  70. docs/_build/
  71. # PyBuilder
  72. .pybuilder/
  73. target/
  74. # Jupyter Notebook
  75. .ipynb_checkpoints
  76. # IPython
  77. profile_default/
  78. ipython_config.py
  79. # pyenv
  80. # For a library or package, you might want to ignore these files since the code is
  81. # intended to run in multiple environments; otherwise, check them in:
  82. # .python-version
  83. # pipenv
  84. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  85. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  86. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  87. # install all needed dependencies.
  88. #Pipfile.lock
  89. # poetry
  90. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  91. # This is especially recommended for binary packages to ensure reproducibility, and is more
  92. # commonly ignored for libraries.
  93. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  94. #poetry.lock
  95. # pdm
  96. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  97. #pdm.lock
  98. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  99. # in version control.
  100. # https://pdm.fming.dev/#use-with-ide
  101. .pdm.toml
  102. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  103. __pypackages__/
  104. # Celery stuff
  105. celerybeat-schedule
  106. celerybeat.pid
  107. # SageMath parsed files
  108. *.sage.py
  109. # Environments
  110. .env
  111. .venv
  112. env/
  113. venv/
  114. ENV/
  115. env.bak/
  116. venv.bak/
  117. # Spyder project settings
  118. .spyderproject
  119. .spyproject
  120. # Rope project settings
  121. .ropeproject
  122. # mkdocs documentation
  123. /site
  124. # mypy
  125. .mypy_cache/
  126. .dmypy.json
  127. dmypy.json
  128. # Pyre type checker
  129. .pyre/
  130. # pytype static type analyzer
  131. .pytype/
  132. # Cython debug symbols
  133. cython_debug/
  134. # PyCharm
  135. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  136. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  137. # and can be added to the global gitignore or merged into this file. For a more nuclear
  138. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  139. #.idea/