Skip to content

Commit 1562549

Browse files
committed
Initial commit
Signed-off-by: Steven Esser <sesser@nexb.com>
0 parents  commit 1562549

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

.gitignore

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Python compiled files
2+
*.py[cod]
3+
4+
# virtualenv and other misc bits
5+
*.egg-info
6+
/dist
7+
/build
8+
/bin
9+
/lib
10+
/scripts
11+
/Scripts
12+
/Lib
13+
/pip-selfcheck.json
14+
/tmp
15+
.Python
16+
/include
17+
/Include
18+
/local
19+
*/local/*
20+
/local/
21+
/share/
22+
/tcl/
23+
/.eggs/
24+
25+
# Installer logs
26+
pip-log.txt
27+
28+
# Unit test / coverage reports
29+
.cache
30+
.coverage
31+
.coverage.*
32+
nosetests.xml
33+
htmlcov
34+
35+
# Translations
36+
*.mo
37+
38+
# IDEs
39+
.project
40+
.pydevproject
41+
.idea
42+
org.eclipse.core.resources.prefs
43+
.vscode
44+
.vs
45+
46+
# Sphinx
47+
docs/_build
48+
docs/bin
49+
docs/build
50+
docs/include
51+
docs/Lib
52+
doc/pyvenv.cfg
53+
pyvenv.cfg
54+
55+
# Various junk and temp files
56+
.DS_Store
57+
*~
58+
.*.sw[po]
59+
.build
60+
.ve
61+
*.bak
62+
/.cache/
63+
64+
# pyenv
65+
/.python-version
66+
/man/
67+
/.pytest_cache/
68+
lib64
69+
tcl

0 commit comments

Comments
 (0)