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.

141 lines
1.9 KiB

6 months ago
3 years ago
  1. # secret passwords and so
  2. /secrets.json
  3. /staticfiles
  4. # /foerderbarometer/settings.py
  5. # /foerderbarometer/*settings*
  6. /input/settings.py
  7. /nohup.out
  8. /logfile
  9. *~
  10. # ---> Python
  11. # Byte-compiled / optimized / DLL files
  12. __pycache__/
  13. *.py[cod]
  14. *$py.class
  15. # C extensions
  16. *.so
  17. # Distribution / packaging
  18. .Python
  19. build/
  20. develop-eggs/
  21. dist/
  22. downloads/
  23. eggs/
  24. .eggs/
  25. lib/
  26. lib64/
  27. parts/
  28. sdist/
  29. var/
  30. wheels/
  31. pip-wheel-metadata/
  32. share/python-wheels/
  33. *.egg-info/
  34. .installed.cfg
  35. *.egg
  36. MANIFEST
  37. # PyInstaller
  38. # Usually these files are written by a python script from a template
  39. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  40. *.manifest
  41. *.spec
  42. # Installer logs
  43. pip-log.txt
  44. pip-delete-this-directory.txt
  45. # Unit test / coverage reports
  46. htmlcov/
  47. .tox/
  48. .nox/
  49. .coverage
  50. .coverage.*
  51. .cache
  52. nosetests.xml
  53. coverage.xml
  54. *.cover
  55. *.py,cover
  56. .hypothesis/
  57. .pytest_cache/
  58. # Translations
  59. *.mo
  60. *.pot
  61. # Django stuff:
  62. *.log
  63. local_settings.py
  64. db.sqlite3
  65. db.sqlite3-journal
  66. # Flask stuff:
  67. instance/
  68. .webassets-cache
  69. # Scrapy stuff:
  70. .scrapy
  71. # Sphinx documentation
  72. docs/_build/
  73. # PyBuilder
  74. target/
  75. # Jupyter Notebook
  76. .ipynb_checkpoints
  77. # IPython
  78. profile_default/
  79. ipython_config.py
  80. # pyenv
  81. .python-version
  82. # pipenv
  83. # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
  84. # However, in case of collaboration, if having platform-specific dependencies or dependencies
  85. # having no cross-platform support, pipenv may install dependencies that don't work, or not
  86. # install all needed dependencies.
  87. #Pipfile.lock
  88. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  89. __pypackages__/
  90. # Celery stuff
  91. celerybeat-schedule
  92. celerybeat.pid
  93. # SageMath parsed files
  94. *.sage.py
  95. # Environments
  96. .env
  97. .venv
  98. env/
  99. venv/
  100. ENV/
  101. env.bak/
  102. venv.bak/
  103. # Spyder project settings
  104. .spyderproject
  105. .spyproject
  106. # Rope project settings
  107. .ropeproject
  108. # mkdocs documentation
  109. /site
  110. # mypy
  111. .mypy_cache/
  112. .dmypy.json
  113. dmypy.json
  114. # Pyre type checker
  115. .pyre/