.gitignore 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. # Created by https://www.toptal.com/developers/gitignore/api/python
  2. # Edit at https://www.toptal.com/developers/gitignore?templates=python
  3. ### Python ###
  4. # Byte-compiled / optimized / DLL files
  5. __pycache__/
  6. *.py[cod]
  7. *$py.class
  8. # C extensions
  9. *.so
  10. # Distribution / packaging
  11. .Python
  12. build/
  13. develop-eggs/
  14. dist/
  15. manimlib.egg-info/
  16. downloads/
  17. eggs/
  18. .eggs/
  19. lib/
  20. lib64/
  21. parts/
  22. sdist/
  23. var/
  24. wheels/
  25. pip-wheel-metadata/
  26. share/python-wheels/
  27. *.egg-info/
  28. .installed.cfg
  29. *.egg
  30. MANIFEST
  31. # PyInstaller
  32. # Usually these files are written by a python script from a template
  33. # before PyInstaller builds the exe, so as to inject date/other infos into it.
  34. *.manifest
  35. *.spec
  36. # Installer logs
  37. pip-log.txt
  38. pip-delete-this-directory.txt
  39. # Unit test / coverage reports
  40. htmlcov/
  41. .tox/
  42. .nox/
  43. .coverage
  44. .coverage.*
  45. .cache
  46. nosetests.xml
  47. coverage.xml
  48. *.cover
  49. *.py,cover
  50. .hypothesis/
  51. .pytest_cache/
  52. pytestdebug.log
  53. # Translations
  54. *.mo
  55. *.pot
  56. # Django stuff:
  57. *.log
  58. local_settings.py
  59. db.sqlite3
  60. db.sqlite3-journal
  61. # Flask stuff:
  62. instance/
  63. .webassets-cache
  64. # Scrapy stuff:
  65. .scrapy
  66. # Sphinx documentation
  67. docs/_build/
  68. doc/_build/
  69. # PyBuilder
  70. target/
  71. # Jupyter Notebook
  72. .ipynb_checkpoints
  73. # IPython
  74. profile_default/
  75. ipython_config.py
  76. # pyenv
  77. .python-version
  78. pyrightconfig.json
  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. # PEP 582; used by e.g. github.com/David-OConnor/pyflow
  86. __pypackages__/
  87. # Celery stuff
  88. celerybeat-schedule
  89. celerybeat.pid
  90. # SageMath parsed files
  91. *.sage.py
  92. # Environments
  93. .env
  94. .venv
  95. env/
  96. venv/
  97. ENV/
  98. env.bak/
  99. venv.bak/
  100. pythonenv*
  101. # Spyder project settings
  102. .spyderproject
  103. .spyproject
  104. # Rope project settings
  105. .ropeproject
  106. # mkdocs documentation
  107. /site
  108. # mypy
  109. .mypy_cache/
  110. .dmypy.json
  111. dmypy.json
  112. # Pyre type checker
  113. .pyre/
  114. # pytype static type analyzer
  115. .pytype/
  116. # profiling data
  117. .prof
  118. # End of https://www.toptal.com/developers/gitignore/api/python
  119. # Custom exclusions:
  120. .DS_Store
  121. # For manim
  122. /videos
  123. /custom_config.yml