Skip to content

Commit ec0cc5e

Browse files
committed
Initial commit
0 parents  commit ec0cc5e

File tree

9 files changed

+956
-0
lines changed

9 files changed

+956
-0
lines changed

.gitignore

Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### JetBrains template
3+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
4+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
5+
6+
# User-specific stuff
7+
.idea/**/workspace.xml
8+
.idea/**/tasks.xml
9+
.idea/**/dictionaries
10+
.idea/**/shelf
11+
12+
# Sensitive or high-churn files
13+
.idea/**/dataSources/
14+
.idea/**/dataSources.ids
15+
.idea/**/dataSources.local.xml
16+
.idea/**/sqlDataSources.xml
17+
.idea/**/dynamic.xml
18+
.idea/**/uiDesigner.xml
19+
.idea/**/dbnavigator.xml
20+
21+
# Gradle
22+
.idea/**/gradle.xml
23+
.idea/**/libraries
24+
25+
# CMake
26+
cmake-build-debug/
27+
cmake-build-release/
28+
29+
# Mongo Explorer plugin
30+
.idea/**/mongoSettings.xml
31+
32+
# File-based project format
33+
*.iws
34+
35+
# IntelliJ
36+
out/
37+
38+
# mpeltonen/sbt-idea plugin
39+
.idea_modules/
40+
41+
# JIRA plugin
42+
atlassian-ide-plugin.xml
43+
44+
# Cursive Clojure plugin
45+
.idea/replstate.xml
46+
47+
# Crashlytics plugin (for Android Studio and IntelliJ)
48+
com_crashlytics_export_strings.xml
49+
crashlytics.properties
50+
crashlytics-build.properties
51+
fabric.properties
52+
53+
# Editor-based Rest Client
54+
.idea/httpRequests
55+
### Python template
56+
# Byte-compiled / optimized / DLL files
57+
__pycache__/
58+
*.py[cod]
59+
*$py.class
60+
61+
# C extensions
62+
*.so
63+
64+
# Distribution / packaging
65+
.Python
66+
build/
67+
develop-eggs/
68+
dist/
69+
downloads/
70+
eggs/
71+
.eggs/
72+
lib/
73+
lib64/
74+
parts/
75+
sdist/
76+
var/
77+
wheels/
78+
*.egg-info/
79+
.installed.cfg
80+
*.egg
81+
MANIFEST
82+
83+
# PyInstaller
84+
# Usually these files are written by a python script from a template
85+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
86+
*.manifest
87+
*.spec
88+
89+
# Installer logs
90+
pip-log.txt
91+
pip-delete-this-directory.txt
92+
93+
# Unit test / coverage reports
94+
htmlcov/
95+
.tox/
96+
.coverage
97+
.coverage.*
98+
.cache
99+
nosetests.xml
100+
coverage.xml
101+
*.cover
102+
.hypothesis/
103+
.pytest_cache/
104+
105+
# Translations
106+
*.mo
107+
*.pot
108+
109+
# Django stuff:
110+
*.log
111+
local_settings.py
112+
db.sqlite3
113+
114+
# Flask stuff:
115+
instance/
116+
.webassets-cache
117+
118+
# Scrapy stuff:
119+
.scrapy
120+
121+
# Sphinx documentation
122+
docs/_build/
123+
124+
# PyBuilder
125+
target/
126+
127+
# Jupyter Notebook
128+
.ipynb_checkpoints
129+
130+
# pyenv
131+
.python-version
132+
133+
# celery beat schedule file
134+
celerybeat-schedule
135+
136+
# SageMath parsed files
137+
*.sage.py
138+
139+
# Environments
140+
.env
141+
.venv
142+
env/
143+
venv/
144+
ENV/
145+
env.bak/
146+
venv.bak/
147+
148+
# Spyder project settings
149+
.spyderproject
150+
.spyproject
151+
152+
# Rope project settings
153+
.ropeproject
154+
155+
# mkdocs documentation
156+
/site
157+
158+
# mypy
159+
.mypy_cache/
160+
### VirtualEnv template
161+
# Virtualenv
162+
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
163+
[Bb]in
164+
[Ii]nclude
165+
[Ll]ib
166+
[Ll]ib64
167+
[Ll]ocal
168+
[Ss]cripts
169+
pyvenv.cfg
170+
pip-selfcheck.json

0 commit comments

Comments
 (0)