.gitignore 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116
  1. # my additions
  2. # Pipenv
  3. Pipfile
  4. Pipfile.lock
  5. # IDE
  6. /.idea
  7. # The rest of this file is from
  8. # https://github.com/github/gitignore/blob/master/Python.gitignore
  9. # Byte-compiled / optimized / DLL files
  10. __pycache__/
  11. *.py[cod]
  12. *$py.class
  13. # C extensions
  14. *.so
  15. # Distribution / packaging
  16. .Python
  17. build/
  18. develop-eggs/
  19. dist/
  20. downloads/
  21. eggs/
  22. .eggs/
  23. lib/
  24. lib64/
  25. parts/
  26. sdist/
  27. var/
  28. wheels/
  29. *.egg-info/
  30. .installed.cfg
  31. *.egg
  32. MANIFEST
  33. # PyInstaller
  34. # Usually these files are written by a python script from a template
  35. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  36. *.manifest
  37. *.spec
  38. # Installer logs
  39. pip-log.txt
  40. pip-delete-this-directory.txt
  41. # Unit test / coverage reports
  42. htmlcov/
  43. .tox/
  44. .coverage
  45. .coverage.*
  46. .cache
  47. nosetests.xml
  48. coverage.xml
  49. *.cover
  50. .hypothesis/
  51. # Translations
  52. *.mo
  53. *.pot
  54. # Django stuff:
  55. *.log
  56. .static_storage/
  57. .media/
  58. local_settings.py
  59. # Flask stuff:
  60. instance/
  61. .webassets-cache
  62. # Scrapy stuff:
  63. .scrapy
  64. # Sphinx documentation
  65. docs/_build/
  66. # PyBuilder
  67. target/
  68. # Jupyter Notebook
  69. .ipynb_checkpoints
  70. # pyenv
  71. .python-version
  72. # celery beat schedule file
  73. celerybeat-schedule
  74. # SageMath parsed files
  75. *.sage.py
  76. # Environments
  77. .env
  78. .venv
  79. env/
  80. venv/
  81. ENV/
  82. env.bak/
  83. venv.bak/
  84. # Spyder project settings
  85. .spyderproject
  86. .spyproject
  87. # Rope project settings
  88. .ropeproject
  89. # mkdocs documentation
  90. /site
  91. # mypy
  92. .mypy_cache/