2026-06-27 11:41:26 +02:00
|
|
|
[project]
|
|
|
|
|
name = "core-hub"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Third-generation production interaction framework for Coulomb / Helixforge."
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.12"
|
|
|
|
|
dependencies = [
|
2026-07-11 01:26:53 +02:00
|
|
|
"hub-core",
|
2026-06-27 11:41:26 +02:00
|
|
|
"fastapi>=0.115",
|
|
|
|
|
"pydantic>=2.8",
|
|
|
|
|
"sqlalchemy[asyncio]>=2.0",
|
|
|
|
|
"alembic>=1.13",
|
|
|
|
|
"asyncpg>=0.29",
|
2026-07-02 16:21:50 +02:00
|
|
|
"psycopg2-binary>=2.9",
|
2026-06-27 11:41:26 +02:00
|
|
|
"httpx>=0.27",
|
|
|
|
|
"uvicorn[standard]>=0.30",
|
2026-06-28 00:19:18 +02:00
|
|
|
"cryptography>=42.0",
|
2026-06-27 11:41:26 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=7.4",
|
|
|
|
|
"pytest-asyncio>=0.23",
|
|
|
|
|
"ruff>=0.8",
|
|
|
|
|
"aiosqlite>=0.20",
|
2026-06-27 14:52:38 +02:00
|
|
|
"playwright>=1.60.0",
|
2026-06-27 11:41:26 +02:00
|
|
|
]
|
|
|
|
|
|
2026-07-11 01:26:53 +02:00
|
|
|
[tool.uv.sources]
|
|
|
|
|
hub-core = { path = "/home/worsch/hub-core", editable = true }
|
|
|
|
|
|
2026-06-27 11:41:26 +02:00
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
pythonpath = ["src"]
|
|
|
|
|
asyncio_mode = "auto"
|
|
|
|
|
|
|
|
|
|
[tool.ruff]
|
|
|
|
|
line-length = 100
|
|
|
|
|
src = ["src", "tests", "scripts"]
|
|
|
|
|
|
|
|
|
|
[tool.ruff.lint]
|
|
|
|
|
select = ["E", "F", "I", "UP", "B"]
|