22 lines
480 B
TOML
22 lines
480 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["hatchling"]
|
||
|
|
build-backend = "hatchling.build"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "jobs"
|
||
|
|
version = "0.1.0"
|
||
|
|
description = "Shared jobs infrastructure - async job management and service clients"
|
||
|
|
readme = "README.md"
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = [
|
||
|
|
"httpx>=0.25.0",
|
||
|
|
"pydantic>=2.0.0",
|
||
|
|
]
|
||
|
|
|
||
|
|
[project.optional-dependencies]
|
||
|
|
redis = ["redis>=5.0.0"]
|
||
|
|
dev = ["pytest>=7.0.0", "pytest-asyncio>=0.21.0"]
|
||
|
|
|
||
|
|
[tool.hatch.build.targets.wheel]
|
||
|
|
packages = ["src/jobs"]
|