-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
46 lines (41 loc) · 1.08 KB
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PostBOUND"
version = "0.8.0"
authors = [{ name = "Rico Bergmann", email = "rico.bergmann1@tu-dresden.de" }]
description = "PostBOUND is an adaptable framework to implement and evaluate database query optimizers"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
]
dependencies = [
"levenshtein==0.25.1",
"mo-sql-parsing==10.651.24172",
"natsort==8.4.0",
"networkx==3.3",
"numpy==2.0.0",
"pandas==2.2.2",
"psycopg[binary]==3.2.1",
"scipy==1.14.0",
"tomli==2.0.1",
]
[project.optional-dependencies]
vis = [
"matplotlib==3.9.0",
"seaborn==0.13.2",
"graphviz==0.20.3",
]
mysql = [
"mysql-connector-python==9.0.0"
]
[project.urls]
"Homepage" = "https://github.com/rbergm/PostBOUND"
[tool.setuptools.packages.find]
where = ["."]
include = ["postbound*"]