Skip to content

Commit 33b2694

Browse files
authored
Merge pull request #40 from jcfr/add-gitignore
ENH: Add .gitignore
2 parents 778a6f7 + 1787e58 commit 33b2694

1 file changed

Lines changed: 65 additions & 0 deletions

File tree

.gitignore

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# Distribution / packaging
7+
.Python
8+
build/
9+
develop-eggs/
10+
dist/
11+
downloads/
12+
eggs/
13+
.eggs/
14+
lib/
15+
lib64/
16+
parts/
17+
sdist/
18+
var/
19+
wheels/
20+
share/python-wheels/
21+
*.egg-info/
22+
.installed.cfg
23+
*.egg
24+
MANIFEST
25+
26+
# Installer logs
27+
pip-log.txt
28+
pip-delete-this-directory.txt
29+
30+
# Unit test / coverage reports
31+
htmlcov/
32+
.tox/
33+
.nox/
34+
.coverage
35+
.coverage.*
36+
.cache
37+
nosetests.xml
38+
coverage.xml
39+
*.cover
40+
*.py,cover
41+
.hypothesis/
42+
.pytest_cache/
43+
cover/
44+
45+
# Environments
46+
.env
47+
.venv
48+
env/
49+
venv/
50+
ENV/
51+
env.bak/
52+
venv.bak/
53+
54+
# OS specific stuff
55+
.DS_Store
56+
.DS_Store?
57+
._*
58+
.Spotlight-V100
59+
.Trashes
60+
ehthumbs.db
61+
Thumbs.db
62+
63+
# Common editor files
64+
*~
65+
*.swp

0 commit comments

Comments
 (0)