-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
47 lines (44 loc) · 1023 Bytes
/
pyproject.toml
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
36
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["setuptools>=42"]
build-backend = "setuptools.build_meta"
[project]
name = "wannadb"
version = "0.0.1"
authors = [
{ name = "Benjamin Hättasch" },
{ name = "Jan-Micha Bodensohn" },
{ name = "Liane Vogel" },
]
description = "WannaDB: Ad-hoc SQL Queries over Text Collections"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"pymongo==4.8.0",
"torch==2.4.1",
"numpy==1.26.4",
"pandas==2.2.2",
"scipy==1.14.0",
"stanza==1.8.2",
"spacy==3.7.5",
"sentence-transformers[train]==3.0.1",
"matplotlib==3.9.2",
"seaborn==0.13.2",
"scikit-learn==1.5.1",
"transformers==4.43.3",
"PyQt6==6.7.1",
"sqlparse==0.5.1",
"faiss-cpu==1.8.0.post1",
"nltk==3.8.1",
]
[project.urls]
"Homepage" = "https://github.com/DataManagementLab/wannadb"
[tool.setuptools]
packages = [
"wannadb",
"wannadb_parsql",
"wannadb_ui",
]