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.

151 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. dwave.conf
  82. ### vim
  83. #
  84. *.swp
  85. compile_commands.json
  86. ### Scons
  87. #
  88. .sconsign.dblite
  89. ### Kdevelop
  90. #
  91. *.kdev4
  92. *.kate-swp
  93. ### C++
  94. #
  95. # Prerequisites
  96. *.d
  97. # Compiled Object files
  98. *.slo
  99. *.lo
  100. *.o
  101. *.obj
  102. # Precompiled Headers
  103. *.gch
  104. *.pch
  105. # Compiled Dynamic libraries
  106. *.so
  107. *.dylib
  108. *.dll
  109. # Fortran module files
  110. *.mod
  111. *.smod
  112. # Compiled Static libraries
  113. *.lai
  114. *.la
  115. *.a
  116. *.lib
  117. # Executables
  118. *.exe
  119. *.out
  120. *.app