|
@@ -0,0 +1,96 @@
|
|
1
|
+# Created by .ignore support plugin (hsz.mobi)
|
|
2
|
+.idea
|
|
3
|
+/config.json
|
|
4
|
+/out
|
|
5
|
+
|
|
6
|
+### Python template
|
|
7
|
+# Byte-compiled / optimized / DLL files
|
|
8
|
+__pycache__/
|
|
9
|
+*.py[cod]
|
|
10
|
+*$py.class
|
|
11
|
+
|
|
12
|
+# C extensions
|
|
13
|
+*.so
|
|
14
|
+
|
|
15
|
+# Distribution / packaging
|
|
16
|
+.Python
|
|
17
|
+env/
|
|
18
|
+build/
|
|
19
|
+develop-eggs/
|
|
20
|
+dist/
|
|
21
|
+downloads/
|
|
22
|
+eggs/
|
|
23
|
+.eggs/
|
|
24
|
+lib/
|
|
25
|
+lib64/
|
|
26
|
+parts/
|
|
27
|
+sdist/
|
|
28
|
+var/
|
|
29
|
+*.egg-info/
|
|
30
|
+.installed.cfg
|
|
31
|
+*.egg
|
|
32
|
+
|
|
33
|
+# PyInstaller
|
|
34
|
+# Usually these files are written by a python script from a template
|
|
35
|
+# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
36
|
+*.manifest
|
|
37
|
+*.spec
|
|
38
|
+
|
|
39
|
+# Installer logs
|
|
40
|
+pip-log.txt
|
|
41
|
+pip-delete-this-directory.txt
|
|
42
|
+
|
|
43
|
+# Unit test / coverage reports
|
|
44
|
+htmlcov/
|
|
45
|
+.tox/
|
|
46
|
+.coverage
|
|
47
|
+.coverage.*
|
|
48
|
+.cache
|
|
49
|
+nosetests.xml
|
|
50
|
+coverage.xml
|
|
51
|
+*,cover
|
|
52
|
+.hypothesis/
|
|
53
|
+
|
|
54
|
+# Translations
|
|
55
|
+*.mo
|
|
56
|
+*.pot
|
|
57
|
+
|
|
58
|
+# Django stuff:
|
|
59
|
+*.log
|
|
60
|
+local_settings.py
|
|
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
|
+# IPython Notebook
|
|
76
|
+.ipynb_checkpoints
|
|
77
|
+
|
|
78
|
+# pyenv
|
|
79
|
+.python-version
|
|
80
|
+
|
|
81
|
+# celery beat schedule file
|
|
82
|
+celerybeat-schedule
|
|
83
|
+
|
|
84
|
+# dotenv
|
|
85
|
+.env
|
|
86
|
+
|
|
87
|
+# virtualenv
|
|
88
|
+venv/
|
|
89
|
+ENV/
|
|
90
|
+
|
|
91
|
+# Spyder project settings
|
|
92
|
+.spyderproject
|
|
93
|
+
|
|
94
|
+# Rope project settings
|
|
95
|
+.ropeproject
|
|
96
|
+
|