Spaces:
Sleeping
Sleeping
[add] initial files
Browse files- .gitignore +90 -0
.gitignore
ADDED
@@ -0,0 +1,90 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Byte-compiled / optimized / DLL files
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*$py.class
|
5 |
+
|
6 |
+
# C extensions
|
7 |
+
*.so
|
8 |
+
|
9 |
+
# Distribution / packaging
|
10 |
+
.Python
|
11 |
+
build/
|
12 |
+
develop-eggs/
|
13 |
+
dist/
|
14 |
+
downloads/
|
15 |
+
eggs/
|
16 |
+
.eggs/
|
17 |
+
lib/
|
18 |
+
lib64/
|
19 |
+
parts/
|
20 |
+
sdist/
|
21 |
+
var/
|
22 |
+
wheels/
|
23 |
+
*.egg-info/
|
24 |
+
.installed.cfg
|
25 |
+
*.egg
|
26 |
+
|
27 |
+
# PyInstaller
|
28 |
+
# Usually these files are written by a python script from a template
|
29 |
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
30 |
+
*.manifest
|
31 |
+
*.spec
|
32 |
+
|
33 |
+
# Installer logs
|
34 |
+
pip-log.txt
|
35 |
+
pip-delete-this-directory.txt
|
36 |
+
|
37 |
+
# Unit test / coverage reports
|
38 |
+
htmlcov/
|
39 |
+
.tox/
|
40 |
+
.nox/
|
41 |
+
.coverage
|
42 |
+
.coverage.*
|
43 |
+
.cache
|
44 |
+
nosetests.xml
|
45 |
+
coverage.xml
|
46 |
+
*.cover
|
47 |
+
*.py,cover
|
48 |
+
.hypothesis/
|
49 |
+
.pytest_cache/
|
50 |
+
|
51 |
+
# Jupyter Notebook
|
52 |
+
.ipynb_checkpoints
|
53 |
+
|
54 |
+
# Environments
|
55 |
+
.env
|
56 |
+
.venv
|
57 |
+
env/
|
58 |
+
venv/
|
59 |
+
ENV/
|
60 |
+
env.bak/
|
61 |
+
venv.bak/
|
62 |
+
|
63 |
+
# Spyder project settings
|
64 |
+
.spyderproject
|
65 |
+
.spyproject
|
66 |
+
|
67 |
+
# Rope project settings
|
68 |
+
.ropeproject
|
69 |
+
|
70 |
+
# mkdocs documentation
|
71 |
+
/site
|
72 |
+
|
73 |
+
# mypy
|
74 |
+
.mypy_cache/
|
75 |
+
.dmypy.json
|
76 |
+
dmypy.json
|
77 |
+
|
78 |
+
# Pyre type checker
|
79 |
+
.pyre/
|
80 |
+
|
81 |
+
# Pytype static type analyzer
|
82 |
+
.pytype/
|
83 |
+
|
84 |
+
# Cython debug symbols
|
85 |
+
cython_debug/
|
86 |
+
|
87 |
+
# VSCode settings and workspace
|
88 |
+
.vscode/
|
89 |
+
|
90 |
+
src\__pycache__
|