-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 883 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 883 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
37
38
[build-system]
requires = ["setuptools>=68.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "openg2p-awe"
version = "0.1.0"
description = "OpenG2P Approval Workflow Engine — generic, configurable multi-stage approval service for OpenG2P modules"
requires-python = ">=3.11"
dependencies = [
"fastapi>=0.115",
"uvicorn[standard]>=0.30",
"sqlalchemy[asyncio]>=2.0",
"asyncpg>=0.29",
"pydantic>=2.6",
"pydantic-settings>=2.0",
"pyyaml>=6.0",
"httpx>=0.27",
"python-jose[cryptography]>=3.3",
"json-logic-qubit>=0.9",
]
[project.optional-dependencies]
test = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-html>=4.0",
"httpx>=0.27",
"pyyaml>=6.0",
"aiosqlite>=0.19",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]