.gitignore 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. tests
  2. ### Python template
  3. # Byte-compiled / optimized / DLL files
  4. __pycache__/
  5. *.py[cod]
  6. *$py.class
  7. # C extensions
  8. *.so
  9. # Distribution / packaging
  10. .Python
  11. build/
  12. develop-eggs/
  13. dist/
  14. downloads/
  15. eggs/
  16. .eggs/
  17. lib/
  18. lib64/
  19. parts/
  20. sdist/
  21. var/
  22. wheels/
  23. share/python-wheels/
  24. *.egg-info/
  25. .installed.cfg
  26. *.egg
  27. MANIFEST
  28. # PyInstaller
  29. # Usually these files are written by a python script from a template
  30. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  31. *.manifest
  32. *.spec
  33. # Installer logs
  34. pip-log.txt
  35. pip-delete-this-directory.txt
  36. # Unit test / coverage reports
  37. htmlcov/
  38. .tox/
  39. .nox/
  40. .coverage
  41. .coverage.*
  42. .cache
  43. nosetests.xml
  44. coverage.xml
  45. *.cover
  46. *.py,cover
  47. .hypothesis/
  48. .pytest_cache/
  49. cover/
  50. # Translations
  51. *.mo
  52. *.pot
  53. # Django stuff:
  54. *.log
  55. local_settings.py
  56. db.sqlite3
  57. db.sqlite3-journal
  58. # Flask stuff:
  59. instance/
  60. .webassets-cache
  61. # Scrapy stuff:
  62. .scrapy
  63. # Sphinx documentation
  64. docs/_build/
  65. # PyBuilder
  66. .pybuilder/
  67. target/
  68. # Jupyter Notebook
  69. .ipynb_checkpoints
  70. # IPython
  71. profile_default/
  72. ipython_config.py
  73. # pyenv
  74. # For a library or package, you might want to ignore these files since the code is
  75. # intended to run in multiple environments; otherwise, check them in:
  76. # .python-version
  77. # pipenv
  78. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  79. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  80. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  81. # install all needed dependencies.
  82. #Pipfile.lock
  83. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  84. __pypackages__/
  85. # Celery stuff
  86. celerybeat-schedule
  87. celerybeat.pid
  88. # SageMath parsed files
  89. *.sage.py
  90. # Spyder project settings
  91. .spyderproject
  92. .spyproject
  93. # Rope project settings
  94. .ropeproject
  95. # mkdocs documentation
  96. /site
  97. # mypy
  98. .mypy_cache/
  99. .dmypy.json
  100. dmypy.json
  101. # Pyre type checker
  102. .pyre/
  103. # pytype static type analyzer
  104. .pytype/
  105. # Cython debug symbols
  106. cython_debug/
  107. ### Windows template
  108. # Windows thumbnail cache files
  109. Thumbs.db
  110. Thumbs.db:encryptable
  111. ehthumbs.db
  112. ehthumbs_vista.db
  113. # Dump file
  114. *.stackdump
  115. # Folder config file
  116. [Dd]esktop.ini
  117. # Recycle Bin used on file shares
  118. $RECYCLE.BIN/
  119. # Windows Installer files
  120. *.cab
  121. *.msi
  122. *.msix
  123. *.msm
  124. *.msp
  125. # Windows shortcuts
  126. *.lnk
  127. ### Example user template template
  128. ### Example user template
  129. # IntelliJ project files
  130. .idea
  131. *.iml
  132. out
  133. gen