forked from DataManagementLab/wannadb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (42 loc) · 967 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
[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.9"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"pymongo==3.12.1",
"torch==1.10.0",
"numpy==1.21.4",
"pandas==1.3.4",
"scipy==1.7.2",
"stanza==1.3.0",
"spacy==3.2.0",
"sentence-transformers==2.1.0",
"matplotlib==3.5.0",
"seaborn==0.11.2",
"scikit-learn==1.0.1",
"transformers==4.12.5",
"PyQt6==6.2.1",
"sqlparse==0.4.2",
]
[project.urls]
"Homepage" = "https://github.com/DataManagementLab/wannadb"
[tool.setuptools]
packages = [
"wannadb",
"wannadb_parsql",
"wannadb_ui",
]