.gitignore 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. archiver.ini
  2. # Created by https://www.gitignore.io/api/python,vim
  3. # Edit at https://www.gitignore.io/?templates=python,vim
  4. ### Python ###
  5. # Byte-compiled / optimized / DLL files
  6. __pycache__/
  7. *.py[cod]
  8. *$py.class
  9. # C extensions
  10. *.so
  11. # Distribution / packaging
  12. .Python
  13. build/
  14. develop-eggs/
  15. dist/
  16. downloads/
  17. eggs/
  18. .eggs/
  19. lib/
  20. lib64/
  21. parts/
  22. sdist/
  23. var/
  24. wheels/
  25. share/python-wheels/
  26. *.egg-info/
  27. .installed.cfg
  28. *.egg
  29. MANIFEST
  30. # PyInstaller
  31. # Usually these files are written by a python script from a template
  32. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  33. *.manifest
  34. *.spec
  35. # Installer logs
  36. pip-log.txt
  37. pip-delete-this-directory.txt
  38. # Unit test / coverage reports
  39. htmlcov/
  40. .tox/
  41. .nox/
  42. .coverage
  43. .coverage.*
  44. .cache
  45. nosetests.xml
  46. coverage.xml
  47. *.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. # Flask stuff:
  58. instance/
  59. .webassets-cache
  60. # Scrapy stuff:
  61. .scrapy
  62. # Sphinx documentation
  63. docs/_build/
  64. # PyBuilder
  65. target/
  66. # Jupyter Notebook
  67. .ipynb_checkpoints
  68. # IPython
  69. profile_default/
  70. ipython_config.py
  71. # pyenv
  72. .python-version
  73. # celery beat schedule file
  74. celerybeat-schedule
  75. # SageMath parsed files
  76. *.sage.py
  77. # Environments
  78. .env
  79. .venv
  80. env/
  81. venv/
  82. ENV/
  83. env.bak/
  84. venv.bak/
  85. # Spyder project settings
  86. .spyderproject
  87. .spyproject
  88. # Rope project settings
  89. .ropeproject
  90. # mkdocs documentation
  91. /site
  92. # mypy
  93. .mypy_cache/
  94. .dmypy.json
  95. dmypy.json
  96. # Pyre type checker
  97. .pyre/
  98. ### Python Patch ###
  99. .venv/
  100. ### Vim ###
  101. # Swap
  102. [._]*.s[a-v][a-z]
  103. [._]*.sw[a-p]
  104. [._]s[a-rt-v][a-z]
  105. [._]ss[a-gi-z]
  106. [._]sw[a-p]
  107. # Session
  108. Session.vim
  109. # Temporary
  110. .netrwhist
  111. *~
  112. # Auto-generated tag files
  113. tags
  114. # Persistent undo
  115. [._]*.un~
  116. # End of https://www.gitignore.io/api/python,vim