Spaces:
Build error
Build error
Wisdom Chen
commited on
Update .gitignore
Browse files- .gitignore +10 -60
.gitignore
CHANGED
@@ -1,12 +1,8 @@
|
|
1 |
-
#
|
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/
|
@@ -24,68 +20,22 @@ wheels/
|
|
24 |
.installed.cfg
|
25 |
*.egg
|
26 |
|
27 |
-
#
|
28 |
-
*.manifest
|
29 |
-
*.spec
|
30 |
-
|
31 |
-
# Installer logs
|
32 |
-
pip-log.txt
|
33 |
-
pip-delete-this-directory.txt
|
34 |
-
|
35 |
-
# Unit test / coverage reports
|
36 |
-
htmlcov/
|
37 |
-
.tox/
|
38 |
-
.coverage
|
39 |
-
.coverage.*
|
40 |
-
.cache
|
41 |
-
nosetests.xml
|
42 |
-
coverage.xml
|
43 |
-
*.cover
|
44 |
-
.hypothesis/
|
45 |
-
|
46 |
-
# Jupyter Notebook
|
47 |
-
.ipynb_checkpoints
|
48 |
-
|
49 |
-
# pyenv
|
50 |
-
.python-version
|
51 |
-
|
52 |
-
# celery beat schedule file
|
53 |
-
celerybeat-schedule
|
54 |
-
|
55 |
-
# SageMath parsed files
|
56 |
-
*.sage.py
|
57 |
-
|
58 |
-
# Environments
|
59 |
.env
|
60 |
.venv
|
61 |
env/
|
62 |
venv/
|
63 |
ENV/
|
64 |
-
env.bak/
|
65 |
-
venv.bak/
|
66 |
-
|
67 |
-
# Spyder project settings
|
68 |
-
.spyderproject
|
69 |
-
.spyproject
|
70 |
-
|
71 |
-
# Rope project settings
|
72 |
-
.ropeproject
|
73 |
-
|
74 |
-
# mkdocs documentation
|
75 |
-
/site
|
76 |
|
77 |
-
#
|
78 |
-
.mypy_cache/
|
79 |
-
|
80 |
-
# IDE settings
|
81 |
-
.vscode/
|
82 |
.idea/
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
|
84 |
-
#
|
85 |
.DS_Store
|
86 |
-
.DS_Store?
|
87 |
-
._*
|
88 |
-
.Spotlight-V100
|
89 |
-
.Trashes
|
90 |
-
ehthumbs.db
|
91 |
Thumbs.db
|
|
|
1 |
+
# Python
|
2 |
__pycache__/
|
3 |
*.py[cod]
|
4 |
*$py.class
|
|
|
|
|
5 |
*.so
|
|
|
|
|
6 |
.Python
|
7 |
build/
|
8 |
develop-eggs/
|
|
|
20 |
.installed.cfg
|
21 |
*.egg
|
22 |
|
23 |
+
# Virtual Environment
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
.env
|
25 |
.venv
|
26 |
env/
|
27 |
venv/
|
28 |
ENV/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
+
# IDE
|
|
|
|
|
|
|
|
|
31 |
.idea/
|
32 |
+
.vscode/
|
33 |
+
*.swp
|
34 |
+
*.swo
|
35 |
+
|
36 |
+
# Streamlit
|
37 |
+
.streamlit/
|
38 |
|
39 |
+
# System
|
40 |
.DS_Store
|
|
|
|
|
|
|
|
|
|
|
41 |
Thumbs.db
|