Generate a Python package project using the Python Cookiecutter package
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

202 lines
2.8KB

  1. ####### IDE Start #######
  2. # Webstorm
  3. .idea/
  4. ####### IDE End #######
  5. ####### MacOS Start #######
  6. # General
  7. .DS_Store
  8. .AppleDouble
  9. .LSOverride
  10. # Icon must end with two \r
  11. Icon
  12. # Thumbnails
  13. ._*
  14. # Files that might appear in the root of a volume
  15. .DocumentRevisions-V100
  16. .fseventsd
  17. .Spotlight-V100
  18. .TemporaryItems
  19. .Trashes
  20. .VolumeIcon.icns
  21. .com.apple.timemachine.donotpresent
  22. # Directories potentially created on remote AFP share
  23. .AppleDB
  24. .AppleDesktop
  25. Network Trash Folder
  26. Temporary Items
  27. .apdisk
  28. ####### MacOS End #######
  29. ####### Windows Start #######
  30. # Windows thumbnail cache files
  31. Thumbs.db
  32. ehthumbs.db
  33. ehthumbs_vista.db
  34. # Dump file
  35. *.stackdump
  36. # Folder config file
  37. [Dd]esktop.ini
  38. # Recycle Bin used on file shares
  39. $RECYCLE.BIN/
  40. # Windows Installer files
  41. *.cab
  42. *.msi
  43. *.msix
  44. *.msm
  45. *.msp
  46. # Windows shortcuts
  47. *.lnk
  48. ####### Windows End #######
  49. ####### Python Start #######
  50. # Byte-compiled / optimized / DLL files
  51. __pycache__/
  52. *.py[cod]
  53. *$py.class
  54. # C extensions
  55. *.so
  56. # Distribution / packaging
  57. .Python
  58. build/
  59. develop-eggs/
  60. dist/
  61. downloads/
  62. eggs/
  63. .eggs/
  64. lib/
  65. lib64/
  66. parts/
  67. sdist/
  68. var/
  69. wheels/
  70. pip-wheel-metadata/
  71. share/python-wheels/
  72. *.egg-info/
  73. .installed.cfg
  74. *.egg
  75. MANIFEST
  76. # PyInstaller
  77. # Usually these files are written by a python script from a template
  78. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  79. *.manifest
  80. *.spec
  81. # Installer logs
  82. pip-log.txt
  83. pip-delete-this-directory.txt
  84. pip-selfcheck.json
  85. # Unit test / coverage reports
  86. htmlcov/
  87. .tox/
  88. .nox/
  89. .coverage
  90. .coverage.*
  91. docs/source/coverage/*
  92. !docs/source/coverage/*.source.html
  93. !docs/source/coverage/extract_source.py
  94. docs/source/api/*
  95. .cache
  96. nosetests.xml
  97. coverage.xml
  98. *.cover
  99. *.py,cover
  100. .hypothesis/
  101. .pytest_cache/
  102. .pylint.d/
  103. # Translations
  104. *.mo
  105. *.pot
  106. # Django stuff:
  107. *.log
  108. local_settings.py
  109. db.sqlite3
  110. db.sqlite3-journal
  111. static/*
  112. !static/.touch
  113. # Flask stuff:
  114. instance/
  115. .webassets-cache
  116. # Scrapy stuff:
  117. .scrapy
  118. # Sphinx documentation
  119. docs/_build/
  120. docs/build/
  121. # PyBuilder
  122. target/
  123. # Jupyter Notebook
  124. .ipynb_checkpoints
  125. # IPython
  126. profile_default/
  127. ipython_config.py
  128. # pyenv
  129. .python-version
  130. # pipenv
  131. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  132. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  133. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  134. # install all needed dependencies.
  135. #Pipfile.lock
  136. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  137. __pypackages__/
  138. # celery beat schedule file
  139. celerybeat-schedule
  140. celerybeat.pid
  141. # SageMath parsed files
  142. *.sage.py
  143. # Environments
  144. .env
  145. .venv
  146. env/
  147. venv/
  148. ENV/
  149. env.bak/
  150. venv.bak/
  151. # Spyder project settings
  152. .spyderproject
  153. .spyproject
  154. # Rope project settings
  155. .ropeproject
  156. # mkdocs documentation
  157. /site
  158. # mypy
  159. .mypy_cache/
  160. .dmypy.json
  161. dmypy.json
  162. # Pyre type checker
  163. .pyre/
  164. ####### Python End #######