Skip to content

Commit 37b7ba0

Browse files
authored
Merge pull request #6 from anantshri/patch-1
added .gitignore
2 parents add4f3c + 49be203 commit 37b7ba0

File tree

1 file changed

+132
-0
lines changed

1 file changed

+132
-0
lines changed

.gitignore

Lines changed: 132 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,132 @@
1+
# DS_Store and Thumbsdb crap stay away
2+
.DS_Store
3+
Thumbs.db
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+
env/
16+
build/
17+
develop-eggs/
18+
dist/
19+
downloads/
20+
eggs/
21+
.eggs/
22+
lib/
23+
lib64/
24+
parts/
25+
sdist/
26+
var/
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+
# Translations
53+
*.mo
54+
*.pot
55+
56+
# Django stuff:
57+
*.log
58+
local_settings.py
59+
60+
# Flask stuff:
61+
instance/
62+
.webassets-cache
63+
64+
# Scrapy stuff:
65+
.scrapy
66+
67+
# Sphinx documentation
68+
docs/_build/
69+
70+
# PyBuilder
71+
target/
72+
73+
# IPython Notebook
74+
.ipynb_checkpoints
75+
76+
# pyenv
77+
.python-version
78+
79+
# celery beat schedule file
80+
celerybeat-schedule
81+
82+
# dotenv
83+
.env
84+
85+
# virtualenv
86+
venv/
87+
ENV/
88+
89+
# Spyder project settings
90+
.spyderproject
91+
92+
93+
# Built application files
94+
*.apk
95+
*.ap_
96+
97+
# Files for the ART/Dalvik VM
98+
*.dex
99+
100+
# Java class files
101+
*.class
102+
103+
# Generated files
104+
bin/
105+
gen/
106+
out/
107+
108+
# Gradle files
109+
.gradle/
110+
build/
111+
112+
# Local configuration file (sdk path, etc)
113+
local.properties
114+
115+
# Proguard folder generated by Eclipse
116+
proguard/
117+
118+
# Log Files
119+
*.log
120+
121+
# Android Studio Navigation editor temp files
122+
.navigation/
123+
124+
# Android Studio captures folder
125+
captures/
126+
127+
# Intellij
128+
*.iml
129+
.idea/workspace.xml
130+
131+
# Keystore files
132+
*.jks

0 commit comments

Comments
 (0)