Spaces:
Sleeping
Sleeping
Update .gitattributes
Browse files- .gitattributes +91 -35
.gitattributes
CHANGED
@@ -1,35 +1,91 @@
|
|
1 |
-
|
2 |
-
|
3 |
-
*.
|
4 |
-
|
5 |
-
*.
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
*.
|
22 |
-
|
23 |
-
*.
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
*.
|
28 |
-
*.
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Python
|
2 |
+
__pycache__/
|
3 |
+
*.py[cod]
|
4 |
+
*$py.class
|
5 |
+
*.so
|
6 |
+
.Python
|
7 |
+
build/
|
8 |
+
develop-eggs/
|
9 |
+
dist/
|
10 |
+
downloads/
|
11 |
+
eggs/
|
12 |
+
.eggs/
|
13 |
+
lib/
|
14 |
+
lib64/
|
15 |
+
parts/
|
16 |
+
sdist/
|
17 |
+
var/
|
18 |
+
wheels/
|
19 |
+
pip-wheel-metadata/
|
20 |
+
share/python-wheels/
|
21 |
+
*.egg-info/
|
22 |
+
.installed.cfg
|
23 |
+
*.egg
|
24 |
+
MANIFEST
|
25 |
+
|
26 |
+
# PyInstaller
|
27 |
+
*.manifest
|
28 |
+
*.spec
|
29 |
+
|
30 |
+
# Installer logs
|
31 |
+
pip-log.txt
|
32 |
+
pip-delete-this-directory.txt
|
33 |
+
|
34 |
+
# Unit test / coverage reports
|
35 |
+
htmlcov/
|
36 |
+
.tox/
|
37 |
+
.nox/
|
38 |
+
.coverage
|
39 |
+
.coverage.*
|
40 |
+
.cache
|
41 |
+
nosetests.xml
|
42 |
+
coverage.xml
|
43 |
+
*.cover
|
44 |
+
*.py,cover
|
45 |
+
.hypothesis/
|
46 |
+
.pytest_cache/
|
47 |
+
|
48 |
+
# Virtual environments
|
49 |
+
.env
|
50 |
+
.venv
|
51 |
+
env/
|
52 |
+
venv/
|
53 |
+
ENV/
|
54 |
+
env.bak/
|
55 |
+
venv.bak/
|
56 |
+
|
57 |
+
# IDEs
|
58 |
+
.vscode/
|
59 |
+
.idea/
|
60 |
+
*.swp
|
61 |
+
*.swo
|
62 |
+
*~
|
63 |
+
|
64 |
+
# OS
|
65 |
+
.DS_Store
|
66 |
+
.DS_Store?
|
67 |
+
._*
|
68 |
+
.Spotlight-V100
|
69 |
+
.Trashes
|
70 |
+
ehthumbs.db
|
71 |
+
Thumbs.db
|
72 |
+
|
73 |
+
# Streamlit
|
74 |
+
.streamlit/secrets.toml
|
75 |
+
|
76 |
+
# Temporary files
|
77 |
+
*.tmp
|
78 |
+
*.temp
|
79 |
+
temp/
|
80 |
+
tmp/
|
81 |
+
|
82 |
+
# API Keys (never commit these!)
|
83 |
+
*.key
|
84 |
+
api_keys.txt
|
85 |
+
secrets.txt
|
86 |
+
.secrets
|
87 |
+
|
88 |
+
# PDF files (don't commit test PDFs)
|
89 |
+
*.pdf
|
90 |
+
test_files/
|
91 |
+
uploads/
|