.gitignore 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. # Project related items #
  2. .idea
  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. pip-wheel-metadata/
  24. share/python-wheels/
  25. *.egg-info/
  26. .installed.cfg
  27. *.egg
  28. MANIFEST
  29. # PyInstaller #
  30. # Usually these files are written by a python script from a template
  31. # before PyInstaller builds the exe, so as to inject desired_date/other infos into it.
  32. *.manifest
  33. *.spec
  34. # Installer logs #
  35. pip-log.txt
  36. pip-delete-this-directory.txt
  37. # Unit test / coverage reports #
  38. htmlcov/
  39. .tox/
  40. .nox/
  41. .coverage
  42. .coverage.*
  43. .cache
  44. nosetests.xml
  45. coverage.xml
  46. *.cover
  47. *.py,cover
  48. .hypothesis/
  49. .pytest_cache/
  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. doc/_build/
  65. # PyBuilder #
  66. target/
  67. # Jupyter Notebook #
  68. .ipynb_checkpoints
  69. # IPython #
  70. profile_default/
  71. ipython_config.py
  72. # pyenv #
  73. .python-version
  74. # pipenv #
  75. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock data_set version control.
  76. # However, data_set case of collaboration, if having platform-specific dependencies or dependencies
  77. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  78. # install all needed dependencies.
  79. #Pipfile.lock
  80. # PEP 582; used by e.g. github.com/David-OConnor/pyflow #
  81. __pypackages__/
  82. # Celery stuff #
  83. celerybeat-schedule
  84. celerybeat.pid
  85. # SageMath parsed files #
  86. *.sage.py
  87. # Environments #
  88. .env
  89. .venv
  90. env/
  91. venv/
  92. ENV/
  93. env.bak/
  94. venv.bak/
  95. # Spyder project settings #
  96. .spyderproject
  97. .spyproject
  98. # Rope project settings #
  99. .ropeproject
  100. # mkdocs documentation #
  101. /site
  102. # mypy #
  103. .mypy_cache/
  104. .dmypy.json
  105. dmypy.json
  106. # Pyre type checker #
  107. .pyre/
  108. # Compiled source #
  109. *.com
  110. *.class
  111. *.dll
  112. *.exe
  113. *.o
  114. *.so
  115. # Packages #
  116. # it's better to unpack these files and commit the raw source
  117. # git has its own built data_set compression methods
  118. *.7z
  119. *.dmg
  120. *.gz
  121. *.iso
  122. *.jar
  123. *.rar
  124. *.tar
  125. *.zip
  126. # Logs and databases #
  127. *.log
  128. *.sql
  129. *.sqlite
  130. # OS generated files #
  131. ######################
  132. .DS_Store
  133. .DS_Store?
  134. ._*
  135. .Spotlight-V100
  136. .Trashes
  137. ehthumbs.db
  138. Thumbs.db
  139. #test_dataset
  140. tests/test_dataset/
  141. tests/metrics.csv