Skip to content

Commit f963bec

Browse files
authored
Merge branch 'master' into gitter-badge-1
2 parents 390a0ac + c354599 commit f963bec

40 files changed

+656
-1836
lines changed

.gitignore

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

.idea/.name

-1
This file was deleted.

0 commit comments

Comments
 (0)