burtenshaw
commited on
Commit
·
9887d1a
1
Parent(s):
c8fad0f
add uv dependency management
Browse files- .python-version +1 -0
- pyproject.toml +15 -0
- requirements.txt +5 -2
- uv.lock +0 -0
.python-version
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
3.11
|
pyproject.toml
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "semantic-deduplication"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add your description here"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.11"
|
7 |
+
dependencies = [
|
8 |
+
"datasets>=3.6.0",
|
9 |
+
"gradio[oauth]>=5.32.1",
|
10 |
+
"huggingface-hub>=0.32.3",
|
11 |
+
"model2vec>=0.5.0",
|
12 |
+
"numpy>=2.2.6",
|
13 |
+
"semhash>=0.3.0",
|
14 |
+
"tqdm>=4.67.1",
|
15 |
+
]
|
requirements.txt
CHANGED
@@ -1,5 +1,8 @@
|
|
1 |
-
|
2 |
-
numpy
|
3 |
datasets
|
|
|
|
|
|
|
|
|
4 |
tqdm
|
5 |
|
|
|
1 |
+
gradio
|
|
|
2 |
datasets
|
3 |
+
semhash
|
4 |
+
model2vec
|
5 |
+
huggingface_hub
|
6 |
+
numpy
|
7 |
tqdm
|
8 |
|
uv.lock
ADDED
The diff for this file is too large to render.
See raw diff
|
|