.gitignore 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. # Specific to this Project
  2. db.json
  3. market.json
  4. player.json
  5. config.json
  6. plots/
  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. share/python-wheels/
  28. *.egg-info/
  29. .installed.cfg
  30. *.egg
  31. MANIFEST
  32. # PyInstaller
  33. # Usually these files are written by a python script from a template
  34. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  35. *.manifest
  36. *.spec
  37. # Installer logs
  38. pip-log.txt
  39. pip-delete-this-directory.txt
  40. # Unit test / coverage reports
  41. htmlcov/
  42. .tox/
  43. .nox/
  44. .coverage
  45. .coverage.*
  46. .cache
  47. nosetests.xml
  48. coverage.xml
  49. *.cover
  50. *.py,cover
  51. .hypothesis/
  52. .pytest_cache/
  53. cover/
  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. .pybuilder/
  71. target/
  72. # Jupyter Notebook
  73. .ipynb_checkpoints
  74. # IPython
  75. profile_default/
  76. ipython_config.py
  77. # pyenv
  78. # For a library or package, you might want to ignore these files since the code is
  79. # intended to run in multiple environments; otherwise, check them in:
  80. # .python-version
  81. # pipenv
  82. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  83. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  84. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  85. # install all needed dependencies.
  86. #Pipfile.lock
  87. # poetry
  88. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  89. # This is especially recommended for binary packages to ensure reproducibility, and is more
  90. # commonly ignored for libraries.
  91. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  92. #poetry.lock
  93. # pdm
  94. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  95. #pdm.lock
  96. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  97. # in version control.
  98. # https://pdm.fming.dev/#use-with-ide
  99. .pdm.toml
  100. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  101. __pypackages__/
  102. # Celery stuff
  103. celerybeat-schedule
  104. celerybeat.pid
  105. # SageMath parsed files
  106. *.sage.py
  107. # Environments
  108. .env
  109. .venv
  110. env/
  111. venv/
  112. ENV/
  113. env.bak/
  114. venv.bak/
  115. # Spyder project settings
  116. .spyderproject
  117. .spyproject
  118. # Rope project settings
  119. .ropeproject
  120. # mkdocs documentation
  121. /site
  122. # mypy
  123. .mypy_cache/
  124. .dmypy.json
  125. dmypy.json
  126. # Pyre type checker
  127. .pyre/
  128. # pytype static type analyzer
  129. .pytype/
  130. # Cython debug symbols
  131. cython_debug/
  132. # PyCharm
  133. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  134. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  135. # and can be added to the global gitignore or merged into this file. For a more nuclear
  136. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  137. #.idea/