Spaces:
Sleeping
Sleeping
Update .gitattributes
Browse files- .gitattributes +48 -35
.gitattributes
CHANGED
@@ -1,35 +1,48 @@
|
|
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 |
+
env/
|
8 |
+
build/
|
9 |
+
develop-eggs/
|
10 |
+
dist/
|
11 |
+
downloads/
|
12 |
+
eggs/
|
13 |
+
.eggs/
|
14 |
+
lib/
|
15 |
+
lib64/
|
16 |
+
parts/
|
17 |
+
sdist/
|
18 |
+
var/
|
19 |
+
wheels/
|
20 |
+
*.egg-info/
|
21 |
+
.installed.cfg
|
22 |
+
*.egg
|
23 |
+
|
24 |
+
# Virtual Environment
|
25 |
+
venv/
|
26 |
+
ENV/
|
27 |
+
|
28 |
+
# IDE
|
29 |
+
.idea/
|
30 |
+
.vscode/
|
31 |
+
*.swp
|
32 |
+
*.swo
|
33 |
+
|
34 |
+
# OS
|
35 |
+
.DS_Store
|
36 |
+
.DS_Store?
|
37 |
+
._*
|
38 |
+
.Spotlight-V100
|
39 |
+
.Trashes
|
40 |
+
ehthumbs.db
|
41 |
+
Thumbs.db
|
42 |
+
|
43 |
+
# Project specific
|
44 |
+
data/
|
45 |
+
*.json
|
46 |
+
*.csv
|
47 |
+
*.xlsx
|
48 |
+
*.xls
|