21 lines
360 B
TOML
21 lines
360 B
TOML
[project]
|
|
name = "external-connector"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"fastapi>=0.115.0,<1.0",
|
|
"httpx>=0.27.0,<1.0",
|
|
"pydantic>=2.7.0,<3.0",
|
|
"qrcode>=8.0,<9.0",
|
|
"uvicorn[standard]>=0.30.0,<1.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.0.0,<9.0",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
pythonpath = ["."]
|
|
testpaths = ["tests"]
|