forked from superlinked/sie
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 748 Bytes
/
Copy pathpyproject.toml
File metadata and controls
36 lines (30 loc) · 748 Bytes
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
[project]
name = "prior-authorization-review-agent"
version = "0.1.0"
description = "Reproduce CMS's published L1851 insufficient-documentation example with SIE"
readme = "README.md"
requires-python = ">=3.12,<3.13"
dependencies = [
"python-dotenv>=1.0",
"pyyaml>=6.0",
"rich>=13.7",
"sie-sdk==0.7.1",
]
[project.scripts]
review-pa = "prior_authorization.review:main"
eval-pa = "prior_authorization.evaluate:main"
[dependency-groups]
dev = [
"pytest>=9.0",
"ruff>=0.14",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["prior_authorization"]
[tool.ruff]
line-length = 120
target-version = "py312"
[tool.pytest.ini_options]
testpaths = ["tests"]