- @packages/@hooks/attribute-hooks: React hooks for data-* attributes - @packages/jobs-python: Python jobs queue library with Redis storage - Fix design-tokens README import paths 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
21 lines
480 B
TOML
21 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"]
|