Skip to content

Commit c56e323

Browse files
committed
Add gitignore
0 parents  commit c56e323

File tree

1 file changed

+192
-0
lines changed

1 file changed

+192
-0
lines changed

.gitignore

+192
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,192 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
pip-wheel-metadata/
24+
share/python-wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
.hypothesis/
51+
.pytest_cache/
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
local_settings.py
60+
db.sqlite3
61+
62+
# Flask stuff:
63+
instance/
64+
.webassets-cache
65+
66+
# Scrapy stuff:
67+
.scrapy
68+
69+
# Sphinx documentation
70+
docs/_build/
71+
72+
# PyBuilder
73+
target/
74+
75+
# Jupyter Notebook
76+
.ipynb_checkpoints
77+
78+
# IPython
79+
profile_default/
80+
ipython_config.py
81+
82+
# pyenv
83+
.python-version
84+
85+
# pipenv
86+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
87+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
88+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
89+
# install all needed dependencies.
90+
#Pipfile.lock
91+
92+
# celery beat schedule file
93+
celerybeat-schedule
94+
95+
# SageMath parsed files
96+
*.sage.py
97+
98+
# Environments
99+
.env
100+
.venv
101+
env/
102+
venv/
103+
ENV/
104+
env.bak/
105+
venv.bak/
106+
107+
# Spyder project settings
108+
.spyderproject
109+
.spyproject
110+
111+
# Rope project settings
112+
.ropeproject
113+
114+
# mkdocs documentation
115+
/site
116+
117+
# mypy
118+
.mypy_cache/
119+
.dmypy.json
120+
dmypy.json
121+
122+
# Pyre type checker
123+
.pyre/
124+
125+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
126+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
127+
128+
# User-specific stuff
129+
.idea/**/workspace.xml
130+
.idea/**/tasks.xml
131+
.idea/**/usage.statistics.xml
132+
.idea/**/dictionaries
133+
.idea/**/shelf
134+
135+
# Generated files
136+
.idea/**/contentModel.xml
137+
138+
# Sensitive or high-churn files
139+
.idea/**/dataSources/
140+
.idea/**/dataSources.ids
141+
.idea/**/dataSources.local.xml
142+
.idea/**/sqlDataSources.xml
143+
.idea/**/dynamic.xml
144+
.idea/**/uiDesigner.xml
145+
.idea/**/dbnavigator.xml
146+
147+
# Gradle
148+
.idea/**/gradle.xml
149+
.idea/**/libraries
150+
151+
# Gradle and Maven with auto-import
152+
# When using Gradle or Maven with auto-import, you should exclude module files,
153+
# since they will be recreated, and may cause churn. Uncomment if using
154+
# auto-import.
155+
# .idea/modules.xml
156+
# .idea/*.iml
157+
# .idea/modules
158+
# *.iml
159+
# *.ipr
160+
161+
# CMake
162+
cmake-build-*/
163+
164+
# Mongo Explorer plugin
165+
.idea/**/mongoSettings.xml
166+
167+
# File-based project format
168+
*.iws
169+
170+
# IntelliJ
171+
out/
172+
173+
# mpeltonen/sbt-idea plugin
174+
.idea_modules/
175+
176+
# JIRA plugin
177+
atlassian-ide-plugin.xml
178+
179+
# Cursive Clojure plugin
180+
.idea/replstate.xml
181+
182+
# Crashlytics plugin (for Android Studio and IntelliJ)
183+
com_crashlytics_export_strings.xml
184+
crashlytics.properties
185+
crashlytics-build.properties
186+
fabric.properties
187+
188+
# Editor-based Rest Client
189+
.idea/httpRequests
190+
191+
# Android studio 3.1+ serialized cache file
192+
.idea/caches/build_file_checksums.ser

0 commit comments

Comments
 (0)