Skip to content

Commit 4a849a0

Browse files
committed
Release V1.0
Initial Release
1 parent a3bb600 commit 4a849a0

File tree

12 files changed

+500
-3
lines changed

12 files changed

+500
-3
lines changed

.gitignore

Lines changed: 156 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,89 @@
1+
2+
# Created by https://www.gitignore.io/api/python,pycharm
3+
# Edit at https://www.gitignore.io/?templates=python,pycharm
4+
5+
### PyCharm ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# Generated files
17+
.idea/**/contentModel.xml
18+
19+
# Sensitive or high-churn files
20+
.idea/**/dataSources/
21+
.idea/**/dataSources.ids
22+
.idea/**/dataSources.local.xml
23+
.idea/**/sqlDataSources.xml
24+
.idea/**/dynamic.xml
25+
.idea/**/uiDesigner.xml
26+
.idea/**/dbnavigator.xml
27+
28+
# Gradle
29+
.idea/**/gradle.xml
30+
.idea/**/libraries
31+
32+
# Gradle and Maven with auto-import
33+
# When using Gradle or Maven with auto-import, you should exclude module files,
34+
# since they will be recreated, and may cause churn. Uncomment if using
35+
# auto-import.
36+
# .idea/modules.xml
37+
# .idea/*.iml
38+
# .idea/modules
39+
# *.iml
40+
# *.ipr
41+
42+
# CMake
43+
cmake-build-*/
44+
45+
# Mongo Explorer plugin
46+
.idea/**/mongoSettings.xml
47+
48+
# File-based project format
49+
*.iws
50+
51+
# IntelliJ
52+
out/
53+
54+
# mpeltonen/sbt-idea plugin
55+
.idea_modules/
56+
57+
# JIRA plugin
58+
atlassian-ide-plugin.xml
59+
60+
# Cursive Clojure plugin
61+
.idea/replstate.xml
62+
63+
# Crashlytics plugin (for Android Studio and IntelliJ)
64+
com_crashlytics_export_strings.xml
65+
crashlytics.properties
66+
crashlytics-build.properties
67+
fabric.properties
68+
69+
# Editor-based Rest Client
70+
.idea/httpRequests
71+
72+
# Android studio 3.1+ serialized cache file
73+
.idea/caches/build_file_checksums.ser
74+
75+
### PyCharm Patch ###
76+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
77+
78+
# *.iml
79+
# modules.xml
80+
# .idea/misc.xml
81+
# *.ipr
82+
83+
# Sonarlint plugin
84+
.idea/sonarlint
85+
86+
### Python ###
187
# Byte-compiled / optimized / DLL files
288
__pycache__/
389
*.py[cod]
@@ -8,7 +94,6 @@ __pycache__/
894

995
# Distribution / packaging
1096
.Python
11-
env/
1297
build/
1398
develop-eggs/
1499
dist/
@@ -20,9 +105,13 @@ lib64/
20105
parts/
21106
sdist/
22107
var/
108+
wheels/
109+
pip-wheel-metadata/
110+
share/python-wheels/
23111
*.egg-info/
24112
.installed.cfg
25113
*.egg
114+
MANIFEST
26115

27116
# PyInstaller
28117
# Usually these files are written by a python script from a template
@@ -37,22 +126,87 @@ pip-delete-this-directory.txt
37126
# Unit test / coverage reports
38127
htmlcov/
39128
.tox/
129+
.nox/
40130
.coverage
41131
.coverage.*
42132
.cache
43133
nosetests.xml
44134
coverage.xml
45-
*,cover
135+
*.cover
136+
.hypothesis/
137+
.pytest_cache/
46138

47139
# Translations
48140
*.mo
49141
*.pot
50142

51143
# Django stuff:
52144
*.log
145+
local_settings.py
146+
db.sqlite3
147+
db.sqlite3-journal
148+
149+
# Flask stuff:
150+
instance/
151+
.webassets-cache
152+
153+
# Scrapy stuff:
154+
.scrapy
53155

54156
# Sphinx documentation
55157
docs/_build/
56158

57159
# PyBuilder
58160
target/
161+
162+
# Jupyter Notebook
163+
.ipynb_checkpoints
164+
165+
# IPython
166+
profile_default/
167+
ipython_config.py
168+
169+
# pyenv
170+
.python-version
171+
172+
# pipenv
173+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
174+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
175+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
176+
# install all needed dependencies.
177+
#Pipfile.lock
178+
179+
# celery beat schedule file
180+
celerybeat-schedule
181+
182+
# SageMath parsed files
183+
*.sage.py
184+
185+
# Environments
186+
.env
187+
.venv
188+
env/
189+
venv/
190+
ENV/
191+
env.bak/
192+
venv.bak/
193+
194+
# Spyder project settings
195+
.spyderproject
196+
.spyproject
197+
198+
# Rope project settings
199+
.ropeproject
200+
201+
# mkdocs documentation
202+
/site
203+
204+
# mypy
205+
.mypy_cache/
206+
.dmypy.json
207+
dmypy.json
208+
209+
# Pyre type checker
210+
.pyre/
211+
212+
# End of https://www.gitignore.io/api/python,pycharm

.idea/PyDocParser.iml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/Project.xml

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codestream.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)