.gitignore 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. .env
  2. config.yaml
  3. data/
  4. .devcontainer
  5. # Coverage
  6. cov.xml
  7. # Created by https://www.toptal.com/developers/gitignore/api/windows,macos,linux,python
  8. # Edit at https://www.toptal.com/developers/gitignore?templates=windows,macos,linux,python
  9. ### Linux ###
  10. *~
  11. # temporary files which can be created if a process still has a handle open of a deleted file
  12. .fuse_hidden*
  13. # KDE directory preferences
  14. .directory
  15. # Linux trash folder which might appear on any partition or disk
  16. .Trash-*
  17. # .nfs files are created when an open file is removed but is still being accessed
  18. .nfs*
  19. ### macOS ###
  20. # General
  21. .DS_Store
  22. .AppleDouble
  23. .LSOverride
  24. # Icon must end with two \r
  25. Icon
  26. # Thumbnails
  27. ._*
  28. # Files that might appear in the root of a volume
  29. .DocumentRevisions-V100
  30. .fseventsd
  31. .Spotlight-V100
  32. .TemporaryItems
  33. .Trashes
  34. .VolumeIcon.icns
  35. .com.apple.timemachine.donotpresent
  36. # Directories potentially created on remote AFP share
  37. .AppleDB
  38. .AppleDesktop
  39. Network Trash Folder
  40. Temporary Items
  41. .apdisk
  42. ### Python ###
  43. # Byte-compiled / optimized / DLL files
  44. __pycache__/
  45. *.py[cod]
  46. *$py.class
  47. # C extensions
  48. *.so
  49. # Distribution / packaging
  50. .Python
  51. build/
  52. develop-eggs/
  53. dist/
  54. downloads/
  55. eggs/
  56. .eggs/
  57. lib/
  58. lib64/
  59. parts/
  60. sdist/
  61. var/
  62. wheels/
  63. share/python-wheels/
  64. *.egg-info/
  65. .installed.cfg
  66. *.egg
  67. MANIFEST
  68. # PyInstaller
  69. # Usually these files are written by a python script from a template
  70. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  71. *.manifest
  72. *.spec
  73. # Installer logs
  74. pip-log.txt
  75. pip-delete-this-directory.txt
  76. # Unit test / coverage reports
  77. htmlcov/
  78. .tox/
  79. .nox/
  80. .coverage
  81. .coverage.*
  82. .cache
  83. nosetests.xml
  84. coverage.xml
  85. *.cover
  86. *.py,cover
  87. .hypothesis/
  88. .pytest_cache/
  89. cover/
  90. # Translations
  91. *.mo
  92. *.pot
  93. # Django stuff:
  94. *.log
  95. local_settings.py
  96. db.sqlite3
  97. db.sqlite3-journal
  98. # Flask stuff:
  99. instance/
  100. .webassets-cache
  101. # Scrapy stuff:
  102. .scrapy
  103. # Sphinx documentation
  104. docs/_build/
  105. # PyBuilder
  106. .pybuilder/
  107. target/
  108. # Jupyter Notebook
  109. .ipynb_checkpoints
  110. # IPython
  111. profile_default/
  112. ipython_config.py
  113. # pyenv
  114. # For a library or package, you might want to ignore these files since the code is
  115. # intended to run in multiple environments; otherwise, check them in:
  116. # .python-version
  117. # pipenv
  118. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  119. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  120. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  121. # install all needed dependencies.
  122. #Pipfile.lock
  123. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  124. __pypackages__/
  125. # Celery stuff
  126. celerybeat-schedule
  127. celerybeat.pid
  128. # SageMath parsed files
  129. *.sage.py
  130. # Environments
  131. .env
  132. .venv
  133. env/
  134. venv/
  135. ENV/
  136. env.bak/
  137. venv.bak/
  138. # Spyder project settings
  139. .spyderproject
  140. .spyproject
  141. # Rope project settings
  142. .ropeproject
  143. # mkdocs documentation
  144. /site
  145. # mypy
  146. .mypy_cache/
  147. .dmypy.json
  148. dmypy.json
  149. # Pyre type checker
  150. .pyre/
  151. # pytype static type analyzer
  152. .pytype/
  153. # Cython debug symbols
  154. cython_debug/
  155. ### Windows ###
  156. # Windows thumbnail cache files
  157. Thumbs.db
  158. Thumbs.db:encryptable
  159. ehthumbs.db
  160. ehthumbs_vista.db
  161. # Dump file
  162. *.stackdump
  163. # Folder config file
  164. [Dd]esktop.ini
  165. # Recycle Bin used on file shares
  166. $RECYCLE.BIN/
  167. # Windows Installer files
  168. *.cab
  169. *.msi
  170. *.msix
  171. *.msm
  172. *.msp
  173. # Windows shortcuts
  174. *.lnk
  175. #config test
  176. config.toml.test
  177. # End of https://www.toptal.com/developers/gitignore/api/windows,macos,linux,python