Spaces:
Sleeping
Sleeping
Create .stignore
Browse files
.stignore
ADDED
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
models
|
2 |
+
*.bin
|
3 |
+
.git
|
4 |
+
# Byte-compiled / optimized / DLL files
|
5 |
+
__pycache__
|
6 |
+
*.py[cod]
|
7 |
+
*$py.class
|
8 |
+
|
9 |
+
# C extensions
|
10 |
+
*.so
|
11 |
+
|
12 |
+
# Distribution / packaging
|
13 |
+
.Python
|
14 |
+
build
|
15 |
+
develop-eggs
|
16 |
+
dist
|
17 |
+
downloads
|
18 |
+
eggs
|
19 |
+
.eggs
|
20 |
+
lib
|
21 |
+
lib64
|
22 |
+
parts
|
23 |
+
sdist
|
24 |
+
var
|
25 |
+
wheels
|
26 |
+
pip-wheel-metadata
|
27 |
+
share/python-wheels
|
28 |
+
*.egg-info
|
29 |
+
.installed.cfg
|
30 |
+
*.egg
|
31 |
+
MANIFEST
|
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 |
+
# Translations
|
44 |
+
*.mo
|
45 |
+
*.pot
|
46 |
+
|
47 |
+
# Django stuff:
|
48 |
+
*.log
|
49 |
+
local_settings.py
|
50 |
+
db.sqlite3
|
51 |
+
|
52 |
+
# Flask stuff:
|
53 |
+
instance
|
54 |
+
.webassets-cache
|
55 |
+
|
56 |
+
# Scrapy stuff:
|
57 |
+
.scrapy
|
58 |
+
|
59 |
+
# Sphinx documentation
|
60 |
+
docs/_build
|
61 |
+
|
62 |
+
# PyBuilder
|
63 |
+
target
|
64 |
+
|
65 |
+
# Jupyter Notebook
|
66 |
+
.ipynb_checkpoints
|
67 |
+
|
68 |
+
# IPython
|
69 |
+
profile_default
|
70 |
+
ipython_config.py
|
71 |
+
|
72 |
+
# pyenv
|
73 |
+
.python-version
|
74 |
+
|
75 |
+
# celery beat schedule file
|
76 |
+
celerybeat-schedule
|
77 |
+
|
78 |
+
# SageMath parsed files
|
79 |
+
*.sage.py
|
80 |
+
|
81 |
+
# Environments
|
82 |
+
.env
|
83 |
+
.venv
|
84 |
+
env
|
85 |
+
venv
|
86 |
+
ENV
|
87 |
+
env.bak
|
88 |
+
venv.bak
|
89 |
+
|
90 |
+
# Spyder project settings
|
91 |
+
.spyderproject
|
92 |
+
.spyproject
|
93 |
+
|
94 |
+
# Rope project settings
|
95 |
+
.ropeproject
|
96 |
+
|
97 |
+
# mypy
|
98 |
+
.mypy_cache
|
99 |
+
.dmypy.json
|
100 |
+
dmypy.json
|
101 |
+
|
102 |
+
# Pyre type checker
|
103 |
+
.pyre
|