Skip to content

Commit 4114080

Browse files
committed
updated gitignore
1 parent 938386a commit 4114080

File tree

1 file changed

+112
-12
lines changed

1 file changed

+112
-12
lines changed

.gitignore

Lines changed: 112 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,117 @@
1-
build/
2-
nad2bin*
3-
*.obj
4-
*.o
5-
*.pyc
1+
pyproj/proj_dir/
2+
pyproj/*.c
3+
proj-*/
4+
5+
# Byte-compiled / optimized / DLL files
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
10+
# C extensions
611
*.so
7-
*.c*
8-
!*.css
9-
.coverage
12+
13+
# Distribution / packaging
14+
wheelhouse/
15+
.Python
16+
env/
17+
build/
18+
develop-eggs/
1019
dist/
20+
downloads/
21+
eggs/
22+
.eggs/
23+
lib/
24+
lib64/
25+
parts/
26+
sdist/
27+
var/
28+
wheels/
29+
*.egg-info/
30+
.installed.cfg
31+
*.egg
32+
33+
# PyInstaller
34+
# Usually these files are written by a python script from a template
35+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
36+
*.manifest
37+
*.spec
38+
39+
# Installer logs
40+
pip-log.txt
41+
pip-delete-this-directory.txt
42+
43+
# Unit test / coverage reports
44+
htmlcov/
45+
.tox/
46+
.coverage
47+
.coverage.*
48+
.cache
49+
nosetests.xml
50+
coverage.xml
51+
*.cover
52+
.hypothesis/
53+
.pytest_cache/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
63+
# Flask stuff:
64+
instance/
65+
.webassets-cache
66+
67+
# Scrapy stuff:
68+
.scrapy
69+
70+
# Sphinx documentation
71+
docs/_build/
72+
73+
# PyBuilder
74+
target/
75+
76+
# Jupyter Notebook
77+
.ipynb_checkpoints
78+
79+
# pyenv
80+
.python-version
81+
82+
# celery beat schedule file
83+
celerybeat-schedule
84+
85+
# SageMath parsed files
86+
*.sage.py
87+
88+
# dotenv
89+
.env
90+
91+
# virtualenv
92+
.venv
1193
venv/
12-
pyproj.egg-info/
13-
pyproj/proj_dir/
14-
pyproj/datadir.py.save
15-
docs/_build
94+
ENV/
95+
96+
# Spyder project settings
97+
.spyderproject
98+
.spyproject
99+
100+
# Rope project settings
101+
.ropeproject
102+
103+
# mkdocs documentation
104+
/site
105+
106+
# mypy
107+
.mypy_cache/
108+
109+
# pycharm
16110
.idea/
111+
112+
# pytest
113+
.pytest_cache/
114+
115+
# vscode
17116
.vscode/
117+

0 commit comments

Comments
 (0)