Spaces:
Running
Running
added requirements
Browse files- pyproject.toml +27 -0
- requirements.txt +12 -0
pyproject.toml
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[project]
|
2 |
+
name = "podcast-search"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = "Add your description here"
|
5 |
+
readme = "README.md"
|
6 |
+
requires-python = ">=3.12"
|
7 |
+
dependencies = [
|
8 |
+
"duckdb>=1.1.3",
|
9 |
+
"fugashi>=1.4.0",
|
10 |
+
"ipywidgets>=8.1.5",
|
11 |
+
"numpy>=2.2.1",
|
12 |
+
"pandas>=2.2.3",
|
13 |
+
"polars>=1.18.0",
|
14 |
+
"pyarrow>=18.1.0",
|
15 |
+
"sentence-transformers>=3.3.1",
|
16 |
+
"sentencepiece>=0.2.0",
|
17 |
+
"torch>=2.5.1",
|
18 |
+
"tqdm>=4.67.1",
|
19 |
+
"unidic-lite>=1.0.8",
|
20 |
+
]
|
21 |
+
|
22 |
+
[dependency-groups]
|
23 |
+
dev = [
|
24 |
+
"jupyterlab>=4.3.4",
|
25 |
+
"pandas-stubs>=2.2.3.241126",
|
26 |
+
"pytest>=8.3.4",
|
27 |
+
]
|
requirements.txt
ADDED
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
sentence-transformers
|
2 |
+
fugashi
|
3 |
+
sentencepiece
|
4 |
+
unidic-lite
|
5 |
+
torch
|
6 |
+
tqdm
|
7 |
+
ipywidgets
|
8 |
+
pandas
|
9 |
+
numpy
|
10 |
+
polars
|
11 |
+
pyarrow
|
12 |
+
duckdb
|