You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

150 lines
1.5 KiB

6 years ago
6 years ago
6 years ago
5 years ago
  1. # ---> Python
  2. # Byte-compiled / optimized / DLL files
  3. __pycache__/
  4. *.py[cod]
  5. *$py.class
  6. # C extensions
  7. *.so
  8. *.o
  9. # Distribution / packaging
  10. .Python
  11. env/
  12. build/
  13. develop-eggs/
  14. dist/
  15. downloads/
  16. eggs/
  17. .eggs/
  18. lib/
  19. lib64/
  20. parts/
  21. sdist/
  22. var/
  23. wheels/
  24. *.egg-info/
  25. .installed.cfg
  26. *.egg
  27. # PyInstaller
  28. # Usually these files are written by a python script from a template
  29. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  30. *.manifest
  31. *.spec
  32. # Installer logs
  33. pip-log.txt
  34. pip-delete-this-directory.txt
  35. # Unit test / coverage reports
  36. htmlcov/
  37. .tox/
  38. .coverage
  39. .coverage.*
  40. .cache
  41. nosetests.xml
  42. coverage.xml
  43. *,cover
  44. .hypothesis/
  45. # Translations
  46. *.mo
  47. *.pot
  48. # Django stuff:
  49. *.log
  50. local_settings.py
  51. # Flask stuff:
  52. instance/
  53. .webassets-cache
  54. # Scrapy stuff:
  55. .scrapy
  56. # Sphinx documentation
  57. docs/_build/
  58. # PyBuilder
  59. target/
  60. # Jupyter Notebook
  61. .ipynb_checkpoints
  62. # pyenv
  63. .python-version
  64. # celery beat schedule file
  65. celerybeat-schedule
  66. # SageMath parsed files
  67. *.sage.py
  68. # dotenv
  69. .env
  70. # virtualenv
  71. .venv
  72. venv/
  73. ENV/
  74. # Spyder project settings
  75. .spyderproject
  76. # Rope project settings
  77. .ropeproject
  78. #### config files
  79. #
  80. database.config
  81. ### vim
  82. #
  83. *.swp
  84. compile_commands.json
  85. ### Scons
  86. #
  87. .sconsign.dblite
  88. ### Kdevelop
  89. #
  90. *.kdev4
  91. *.kate-swp
  92. ### C++
  93. #
  94. # Prerequisites
  95. *.d
  96. # Compiled Object files
  97. *.slo
  98. *.lo
  99. *.o
  100. *.obj
  101. # Precompiled Headers
  102. *.gch
  103. *.pch
  104. # Compiled Dynamic libraries
  105. *.so
  106. *.dylib
  107. *.dll
  108. # Fortran module files
  109. *.mod
  110. *.smod
  111. # Compiled Static libraries
  112. *.lai
  113. *.la
  114. *.a
  115. *.lib
  116. # Executables
  117. *.exe
  118. *.out
  119. *.app