Skip to content

Commit 084d3a6

Browse files
authored
Merge pull request #27 from ManimCommunity/PgBiel-gitignore-patch
Change .gitignore
2 parents d709f88 + ff15e31 commit 084d3a6

File tree

1 file changed

+105
-14
lines changed

1 file changed

+105
-14
lines changed

.gitignore

Lines changed: 105 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,119 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
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+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
*.py,cover
51+
.hypothesis/
52+
.pytest_cache/
53+
54+
*.log
55+
56+
# Sphinx documentation
57+
docs/_build/
58+
59+
# PyBuilder
60+
target/
61+
62+
# Jupyter Notebook
63+
.ipynb_checkpoints
64+
65+
# IPython
66+
profile_default/
67+
ipython_config.py
68+
69+
# pyenv
70+
.python-version
71+
72+
# pipenv
73+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
74+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
75+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
76+
# install all needed dependencies.
77+
#Pipfile.lock
78+
79+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
80+
__pypackages__/
81+
82+
# Celery stuff
83+
celerybeat-schedule
84+
celerybeat.pid
85+
86+
# Environments
87+
.env
88+
.venv
89+
env/
90+
venv/
91+
ENV/
92+
env.bak/
93+
venv.bak/
94+
95+
# mkdocs documentation
96+
/site
97+
98+
# mypy
99+
.mypy_cache/
100+
.dmypy.json
101+
dmypy.json
102+
1103
*.pyc
2104
*.bak
3105
.DS_Store
4-
homeless.py
5-
playground.py
6-
cairo_test.py
7-
mayavi_test.py
8-
random_scenes/
9-
files/
10-
assets/
11-
ben_playground.py
12-
ben_cairo_test.py
106+
13107
.floo
14108
.flooignore
15109
.vscode
16110
.vs
17111
*.xml
18112
*.iml
19113
media
20-
manim.sublime-project
21-
manim.sublime-workspace
22114
.eggs/
23115
build/
24116
dist/
25-
manim.egg-info/
26117

27-
primes.py
28-
/media_dir.txt
118+
/media_dir.txt
119+
# ^TODO: Remove the need for this with a proper config file

0 commit comments

Comments
 (0)