ktsn-ud commited on
Commit
dd595fc
·
0 Parent(s):

first commit

Browse files
Files changed (2) hide show
  1. .gitignore +44 -0
  2. .python-version +1 -0
.gitignore ADDED
@@ -0,0 +1,44 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Python
2
+ __pycache__/
3
+ *.pyc
4
+ *.pyo
5
+ *.pyd
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
+ *.egg-info/
20
+ .installed.cfg
21
+ *.egg
22
+
23
+ # Virtualenv
24
+ .venv/
25
+ venv/
26
+ ENV/
27
+
28
+ # Secrets
29
+ scripts/google-credentials.json
30
+ .env
31
+
32
+ # Large pretrained resources (do not commit)
33
+ resources/embeddings/
34
+ resources/**/*.vec
35
+ resources/**/*.bin
36
+
37
+ # OS generated files
38
+ .DS_Store
39
+ .DS_Store?
40
+ ._*
41
+ .Spotlight-V100
42
+ .Trashes
43
+ ehthumbs.db
44
+ Thumbs.db
.python-version ADDED
@@ -0,0 +1 @@
 
 
1
+ 3.12.11