.gitignore 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. *.ttx
  2. *.pyc
  3. # General
  4. .DS_Store
  5. .AppleDouble
  6. .LSOverride
  7. # Thumbnails
  8. ._*
  9. # Files that might appear in the root of a volume
  10. .DocumentRevisions-V100
  11. .fseventsd
  12. .Spotlight-V100
  13. .TemporaryItems
  14. .Trashes
  15. .VolumeIcon.icns
  16. .com.apple.timemachine.donotpresent
  17. # Directories potentially created on remote AFP share
  18. .AppleDB
  19. .AppleDesktop
  20. Network Trash Folder
  21. Temporary Items
  22. .apdisk
  23. # Byte-compiled / optimized / DLL files
  24. __pycache__/
  25. *.py[cod]
  26. *$py.class
  27. # C extensions
  28. *.so
  29. # Distribution / packaging
  30. .Python
  31. build/
  32. develop-eggs/
  33. dist/
  34. downloads/
  35. eggs/
  36. .eggs/
  37. lib/
  38. lib64/
  39. parts/
  40. sdist/
  41. var/
  42. wheels/
  43. pip-wheel-metadata/
  44. share/python-wheels/
  45. *.egg-info/
  46. .installed.cfg
  47. *.egg
  48. MANIFEST
  49. # PyInstaller
  50. # Usually these files are written by a python script from a template
  51. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  52. *.manifest
  53. *.spec
  54. # Installer logs
  55. pip-log.txt
  56. pip-delete-this-directory.txt
  57. # Unit test / coverage reports
  58. htmlcov/
  59. .tox/
  60. .nox/
  61. .coverage
  62. .coverage.*
  63. .cache
  64. nosetests.xml
  65. coverage.xml
  66. *.cover
  67. *.py,cover
  68. .hypothesis/
  69. .pytest_cache/
  70. # Translations
  71. *.mo
  72. *.pot
  73. # Django stuff:
  74. *.log
  75. local_settings.py
  76. db.sqlite3
  77. db.sqlite3-journal
  78. # Flask stuff:
  79. instance/
  80. .webassets-cache
  81. # Scrapy stuff:
  82. .scrapy
  83. # Sphinx documentation
  84. docs/_build/
  85. # PyBuilder
  86. target/
  87. # Jupyter Notebook
  88. .ipynb_checkpoints
  89. # IPython
  90. profile_default/
  91. ipython_config.py
  92. # pyenv
  93. .python-version
  94. # pipenv
  95. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  96. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  97. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  98. # install all needed dependencies.
  99. #Pipfile.lock
  100. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  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/