[project] name = "event-bus" version = "0.1.0" description = "Inter-service event bus" requires-python = ">=3.13" dependencies = [ "fastapi>=0.115.0", "uvicorn>=0.34.0", "pydantic-settings>=2.0.0", "httpx>=0.27.0", ] [project.scripts] event-bus = "event_bus.main:run" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/event_bus"] [dependency-groups] dev = [ "pytest>=7.0.0", "pytest-asyncio>=0.23.0", "httpx>=0.27.0", ] [tool.ruff.lint.isort] known-first-party = ["event_bus"]