Skip to content

Commit b3b4905

Browse files
committed
Fix .gitignore
1 parent ce1a757 commit b3b4905

File tree

2 files changed

+102
-30
lines changed

2 files changed

+102
-30
lines changed

.eggs/README.txt

Lines changed: 0 additions & 6 deletions
This file was deleted.

.gitignore

Lines changed: 102 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# Project-specific generated files
22
docs/build/
33

4+
# Temp file during Mypy processing
5+
mypy_annotate.dat
6+
47
/empty
58

9+
# MacOS files
10+
**/.DS_Store
11+
612
# Byte-compiled / optimized / DLL files / editor temp files
713
__pycache__/
814
*.py[cod]
15+
*$py.class
916
*~
1017
\#*
1118
.#*
@@ -16,54 +23,125 @@ __pycache__/
1623

1724
# Distribution / packaging
1825
.Python
19-
/build/
20-
/develop-eggs/
21-
/dist/
22-
/eggs/
23-
/lib/
24-
/lib64/
25-
/parts/
26-
/sdist/
27-
/var/
26+
build/
27+
develop-eggs/
28+
dist/
29+
downloads/
30+
eggs/
31+
.eggs/
32+
lib/
33+
lib64/
34+
parts/
35+
sdist/
36+
var/
37+
wheels/
38+
pip-wheel-metadata/
39+
share/python-wheels/
2840
*.egg-info/
2941
.installed.cfg
3042
*.egg
31-
/.pybuild
3243
pip-wheel-metadata/
3344

3445
# Installer logs
3546
pip-log.txt
47+
pip-delete-this-directory.txt
3648

3749
# Unit test / coverage reports
3850
htmlcov/
3951
.tox/
40-
.venv/
4152
pyvenv.cfg
53+
.venv/
54+
.nox/
4255
.coverage
4356
.coverage.*
4457
.cache
45-
.pytest_cache/
46-
.mypy_cache/
4758
nosetests.xml
4859
coverage.xml
49-
50-
# Temp file during Mypy processing
51-
mypy_annotate.dat
60+
*.cover
61+
*.py,cover
62+
.hypothesis/
63+
.pytest_cache/
64+
.mypy_cache/
5265

5366
# Translations
5467
*.mo
68+
*.pot
69+
70+
# Django stuff:
71+
*.log
72+
local_settings.py
73+
db.sqlite3
74+
db.sqlite3-journal
75+
76+
# Flask stuff:
77+
instance/
78+
.webassets-cache
5579

56-
# Mr Developer
57-
.mr.developer.cfg
58-
.project
59-
.pydevproject
80+
# Scrapy stuff:
81+
.scrapy
6082

61-
# Rope
83+
# Sphinx documentation
84+
docs/_build/
85+
86+
# PyBuilder
87+
target/
88+
89+
# Jupyter Notebook
90+
.ipynb_checkpoints
91+
92+
# IPython
93+
profile_default/
94+
ipython_config.py
95+
96+
# pyenv
97+
.python-version
98+
99+
# pipenv
100+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
101+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
102+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
103+
# install all needed dependencies.
104+
#Pipfile.lock
105+
106+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
107+
__pypackages__/
108+
109+
# Celery stuff
110+
celerybeat-schedule
111+
celerybeat.pid
112+
113+
# SageMath parsed files
114+
*.sage.py
115+
116+
# Environments
117+
.env
118+
.venv
119+
env/
120+
venv/
121+
ENV/
122+
env.bak/
123+
venv.bak/
124+
125+
# Spyder project settings
126+
.spyderproject
127+
.spyproject
128+
129+
# Rope project settings
62130
.ropeproject
63131

64-
# Django stuff:
65-
*.log
66-
*.pot
132+
# mkdocs documentation
133+
/site
134+
135+
# mypy
136+
.mypy_cache/
137+
.dmypy.json
138+
dmypy.json
139+
140+
# Pyre type checker
141+
.pyre/
142+
143+
# Ruff
144+
.ruff_cache
67145

68146
# Sphinx documentation
69147
doc/_build/

0 commit comments

Comments
 (0)