-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.35 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (47 loc) · 1.35 KB
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
48
49
50
51
52
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "prepbench"
version = "0.1.0"
description = "Benchmark dataset, evaluator, and user simulator for natural-language-driven data preparation"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
authors = [
{ name = "PrepBench Authors" },
]
keywords = ["benchmark", "data preparation", "table transformation", "agent evaluation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"Jinja2>=3.1",
"numpy>=1.26",
"pandas>=2.1",
"PyYAML>=6.0",
"requests>=2.31",
]
[project.urls]
Homepage = "https://github.com/TsinghuaDatabaseGroup/prepbench"
Repository = "https://github.com/TsinghuaDatabaseGroup/prepbench"
Issues = "https://github.com/TsinghuaDatabaseGroup/prepbench/issues"
[tool.setuptools]
packages = [
"prepbench",
"evaluate",
"evaluate.matchers",
"py2flow",
"py2flow.operators",
"simulator",
]
[tool.setuptools.package-dir]
"" = "src"
[tool.setuptools.package-data]
simulator = ["prompts/*.yaml", "prompts/templates/*.jinja2"]
py2flow = ["flow.schema.json"]