2026-02-19 19:05:01 +00:00
|
|
|
[build-system]
|
|
|
|
|
requires = ["hatchling"]
|
|
|
|
|
build-backend = "hatchling.build"
|
|
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "timmy-time"
|
|
|
|
|
version = "1.0.0"
|
|
|
|
|
description = "Mission Control for sovereign AI agents"
|
|
|
|
|
readme = "README.md"
|
|
|
|
|
requires-python = ">=3.11"
|
|
|
|
|
license = { text = "MIT" }
|
|
|
|
|
dependencies = [
|
|
|
|
|
"agno>=1.4.0",
|
|
|
|
|
"fastapi>=0.115.0",
|
|
|
|
|
"uvicorn[standard]>=0.32.0",
|
|
|
|
|
"jinja2>=3.1.0",
|
|
|
|
|
"httpx>=0.27.0",
|
|
|
|
|
"python-multipart>=0.0.12",
|
|
|
|
|
"aiofiles>=24.0.0",
|
|
|
|
|
"typer>=0.12.0",
|
|
|
|
|
"rich>=13.0.0",
|
2026-02-19 19:31:48 +00:00
|
|
|
"pydantic-settings>=2.0.0",
|
2026-02-19 19:05:01 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
|
dev = [
|
|
|
|
|
"pytest>=8.0.0",
|
|
|
|
|
"pytest-asyncio>=0.24.0",
|
|
|
|
|
"pytest-cov>=5.0.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
|
timmy = "timmy.cli:main"
|
2026-02-21 16:36:56 +00:00
|
|
|
self-tdd = "self_tdd.watchdog:main"
|
2026-02-19 19:05:01 +00:00
|
|
|
|
|
|
|
|
[tool.hatch.build.targets.wheel]
|
2026-02-19 19:31:48 +00:00
|
|
|
sources = {"src" = ""}
|
2026-02-21 16:36:56 +00:00
|
|
|
include = ["src/timmy", "src/dashboard", "src/config.py", "src/self_tdd"]
|
2026-02-19 19:05:01 +00:00
|
|
|
|
|
|
|
|
[tool.pytest.ini_options]
|
|
|
|
|
testpaths = ["tests"]
|
|
|
|
|
pythonpath = ["src"]
|
|
|
|
|
asyncio_mode = "auto"
|
|
|
|
|
addopts = "-v --tb=short"
|
|
|
|
|
|
|
|
|
|
[tool.coverage.run]
|
|
|
|
|
source = ["src"]
|
|
|
|
|
omit = ["*/tests/*"]
|