-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 1.02 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
[build-system]
requires = ["setuptools>=68", "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 = {text = "MIT"}
authors = [{name = "PolicyEngine", email = "hello@policyengine.org"}]
requires-python = ">=3.10"
dependencies = [
"litellm[caching]>=1.30",
"policyengine-us>=1.0",
"pandas>=2.0",
"numpy>=1.24",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.4",
]
docs = [
"jupyter-book>=2.0",
"myst-nb>=1.0",
"matplotlib>=3.8",
"seaborn>=0.13",
]
[project.scripts]
policybench = "policybench.cli:main"
[tool.setuptools.packages.find]
include = ["policybench*"]
[tool.ruff]
line-length = 88
target-version = "py310"
[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\"')",
]