Upload .gitignore with huggingface_hub
Browse files- .gitignore +85 -0
.gitignore
ADDED
@@ -0,0 +1,85 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Virtual environments
|
2 |
+
myenv/
|
3 |
+
venv/
|
4 |
+
env/
|
5 |
+
.venv/
|
6 |
+
.env/
|
7 |
+
|
8 |
+
# Python cache
|
9 |
+
__pycache__/
|
10 |
+
*.py[cod]
|
11 |
+
*$py.class
|
12 |
+
*.so
|
13 |
+
|
14 |
+
# Distribution / packaging
|
15 |
+
.Python
|
16 |
+
build/
|
17 |
+
develop-eggs/
|
18 |
+
dist/
|
19 |
+
downloads/
|
20 |
+
eggs/
|
21 |
+
.eggs/
|
22 |
+
lib/
|
23 |
+
lib64/
|
24 |
+
parts/
|
25 |
+
sdist/
|
26 |
+
var/
|
27 |
+
wheels/
|
28 |
+
*.egg-info/
|
29 |
+
.installed.cfg
|
30 |
+
*.egg
|
31 |
+
|
32 |
+
# PyInstaller
|
33 |
+
*.manifest
|
34 |
+
*.spec
|
35 |
+
|
36 |
+
# Installer logs
|
37 |
+
pip-log.txt
|
38 |
+
pip-delete-this-directory.txt
|
39 |
+
|
40 |
+
# Unit test / coverage reports
|
41 |
+
htmlcov/
|
42 |
+
.tox/
|
43 |
+
.coverage
|
44 |
+
.coverage.*
|
45 |
+
.cache
|
46 |
+
nosetests.xml
|
47 |
+
coverage.xml
|
48 |
+
*.cover
|
49 |
+
.hypothesis/
|
50 |
+
.pytest_cache/
|
51 |
+
|
52 |
+
# Jupyter Notebook
|
53 |
+
.ipynb_checkpoints
|
54 |
+
|
55 |
+
# pyenv
|
56 |
+
.python-version
|
57 |
+
|
58 |
+
# Environments
|
59 |
+
.env
|
60 |
+
.venv
|
61 |
+
env/
|
62 |
+
venv/
|
63 |
+
ENV/
|
64 |
+
env.bak/
|
65 |
+
venv.bak/
|
66 |
+
|
67 |
+
# IDE
|
68 |
+
.vscode/
|
69 |
+
.idea/
|
70 |
+
*.swp
|
71 |
+
*.swo
|
72 |
+
*~
|
73 |
+
|
74 |
+
# OS
|
75 |
+
.DS_Store
|
76 |
+
.DS_Store?
|
77 |
+
._*
|
78 |
+
.Spotlight-V100
|
79 |
+
.Trashes
|
80 |
+
ehthumbs.db
|
81 |
+
Thumbs.db
|
82 |
+
|
83 |
+
# Project specific
|
84 |
+
main/myenv/
|
85 |
+
main/__pycache__/
|