Graphe des relations d'ajout au groupe entre les membres du Million Project
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

.gitignore 3.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. # ignore execution files
  2. results/
  3. # vs code config file
  4. .vscode
  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. *.py,cover
  49. .hypothesis/
  50. .pytest_cache/
  51. cover/
  52. # Translations
  53. *.mo
  54. *.pot
  55. # Django stuff:
  56. *.log
  57. local_settings.py
  58. db.sqlite3
  59. db.sqlite3-journal
  60. # Flask stuff:
  61. instance/
  62. .webassets-cache
  63. # Scrapy stuff:
  64. .scrapy
  65. # Sphinx documentation
  66. docs/_build/
  67. # PyBuilder
  68. .pybuilder/
  69. target/
  70. # Jupyter Notebook
  71. .ipynb_checkpoints
  72. # IPython
  73. profile_default/
  74. ipython_config.py
  75. # pyenv
  76. # For a library or package, you might want to ignore these files since the code is
  77. # intended to run in multiple environments; otherwise, check them in:
  78. # .python-version
  79. # pipenv
  80. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  81. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  82. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  83. # install all needed dependencies.
  84. #Pipfile.lock
  85. # poetry
  86. # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
  87. # This is especially recommended for binary packages to ensure reproducibility, and is more
  88. # commonly ignored for libraries.
  89. # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
  90. #poetry.lock
  91. # pdm
  92. # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
  93. #pdm.lock
  94. # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
  95. # in version control.
  96. # https://pdm.fming.dev/latest/usage/project/#working-with-version-control
  97. .pdm.toml
  98. .pdm-python
  99. .pdm-build/
  100. # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
  101. __pypackages__/
  102. # Celery stuff
  103. celerybeat-schedule
  104. celerybeat.pid
  105. # SageMath parsed files
  106. *.sage.py
  107. # Environments
  108. .env
  109. .venv
  110. env/
  111. venv/
  112. ENV/
  113. env.bak/
  114. venv.bak/
  115. # Spyder project settings
  116. .spyderproject
  117. .spyproject
  118. # Rope project settings
  119. .ropeproject
  120. # mkdocs documentation
  121. /site
  122. # mypy
  123. .mypy_cache/
  124. .dmypy.json
  125. dmypy.json
  126. # Pyre type checker
  127. .pyre/
  128. # pytype static type analyzer
  129. .pytype/
  130. # Cython debug symbols
  131. cython_debug/
  132. # PyCharm
  133. # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
  134. # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
  135. # and can be added to the global gitignore or merged into this file. For a more nuclear
  136. # option (not recommended) you can uncomment the following to ignore the entire idea folder.
  137. #.idea/