Skip to content

Commit 9a87ba1

Browse files
ncrubinbabbush
authored andcommitted
Broadening gitignore (#60)
Gitignore did not flag installation files and intermediate files such as checkpoints for ipython notebooks and built sphinx documentation. Update to the gitignore will prevent developers commiting the checkpoint files , environment files, sphinx documentation, etc.
1 parent 7a22a0a commit 9a87ba1

File tree

1 file changed

+69
-3
lines changed

1 file changed

+69
-3
lines changed

.gitignore

Lines changed: 69 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,72 @@
1-
*.pyc
2-
__pycache__/
31
.DS_Store
4-
.ipynb_checkpoints/
52
*lastfailed
63
*coverage
4+
5+
# Byte-compiled / optimized / DLL files
6+
__pycache__/
7+
*.py[cod]
8+
*$py.class
9+
10+
# C extensions
11+
*.so
12+
13+
# Distribution / packaging
14+
.Python
15+
build/
16+
develop-eggs/
17+
dist/
18+
downloads/
19+
eggs/
20+
.eggs/
21+
lib/
22+
lib64/
23+
parts/
24+
sdist/
25+
var/
26+
wheels/
27+
*.egg-info/
28+
.installed.cfg
29+
*.egg
30+
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+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
.hypothesis/
51+
52+
# Sphinx documentation
53+
docs/_build/
54+
55+
# PyBuilder
56+
target/
57+
58+
# Jupyter Notebook
59+
.ipynb_checkpoints
60+
61+
# pyenv
62+
.python-version
63+
64+
# Environments
65+
.env
66+
.venv
67+
env/
68+
venv/
69+
ENV/
70+
71+
# mkdocs documentation
72+
/site

0 commit comments

Comments
 (0)