-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.27 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.27 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
53
54
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "policybench"
version = "2.0.0"
description = "Benchmark: can AI models calculate tax/benefit outcomes without tools?"
readme = "README.md"
license = "MIT"
authors = [{name = "PolicyEngine", email = "[email protected]"}]
requires-python = ">=3.10"
dependencies = [
"litellm[caching]>=1.30",
"pandas>=2.0",
"numpy>=1.24",
"policyengine>=4.4.4,<5",
"policyengine-uk==2.88.16",
"policyengine-us @ git+https://github.com/PolicyEngine/policyengine-us@4fd79e6608bc2dac3a7fde0be37191cb4870bd85",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.4",
]
docs = [
"ipykernel>=6.0",
"jupyter-book>=2.0",
]
[project.scripts]
policybench = "policybench.cli:main"
[tool.setuptools.packages.find]
include = ["policybench*"]
[tool.setuptools.package-data]
policybench = ["benchmark_specs.json", "population_weights.json"]
[tool.ruff]
line-length = 88
target-version = "py310"
extend-exclude = ["app/public/paper/web/index.out.ipynb"]
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]