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.

149 lines
1.5 KiB

6 years ago
6 years ago
6 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. ### C++
  92. #
  93. # Prerequisites
  94. *.d
  95. # Compiled Object files
  96. *.slo
  97. *.lo
  98. *.o
  99. *.obj
  100. # Precompiled Headers
  101. *.gch
  102. *.pch
  103. # Compiled Dynamic libraries
  104. *.so
  105. *.dylib
  106. *.dll
  107. # Fortran module files
  108. *.mod
  109. *.smod
  110. # Compiled Static libraries
  111. *.lai
  112. *.la
  113. *.a
  114. *.lib
  115. # Executables
  116. *.exe
  117. *.out
  118. *.app