forked from awslabs/stickler
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.46 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "stickler-eval"
version = "0.2.0"
description = "Structured object comparison and evaluation library"
authors = [
{name = "Spencer Romo", email = "sromo@amazon.com"},
{name = "Ayushi Haria", email = "ayuharia@amazon.com"},
{name = "Aditya Addepalli", email = "adiadd@amazon.com"},
{name = "Ryan Razkenari", email = "razken@amazon.com"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"pydantic>=2.11.0,<3.0.0",
"rapidfuzz>=3.0.0",
"munkres>=1.1.4",
"numpy>=1.24.0,<=2.3.3",
"scipy>=1.10.0",
"psutil>=5.8.0",
"pandas>=1.5.0",
"jsonschema>=4.0.0",
"scikit-learn>=1.8.0",
"jinja2>=3.1.6,<3.2.0"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-xdist>=3.0.0",
"coverage>=7.0.0",
"beautifulsoup4>=4.14.2",
"ruff>=0.14.10",
]
llm = [
"strands-agents>=1.0.0,<=1.16.0"
]
bert = [
"evaluate>=0.4.0",
"torch>=2.0.0",
"bert-score>=0.3.0",
]
semantic = [
"boto3>=1.28.0",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.bandit]
exclude_dirs = ["tests"]
[build-system]
requires = ["setuptools >= 61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = ["-v", "--tb=short"]
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
]