[project] name = "internetpressure" version = "0.1.0" description = "InternetPressure.io — ingestion API, pressure engine, event engine, BGP ingestor and public API" requires-python = ">=3.12" dependencies = [ "fastapi>=0.115", "uvicorn[standard]>=0.30", "pydantic>=2.8", "pydantic-settings>=2.4", "asyncpg>=0.30", "redis>=5.1", "httpx>=0.27", "websockets>=13", "orjson>=3.10", "typer>=0.12", "pyyaml>=6", "python-ulid>=2.7", "python-slugify>=8", "feedparser>=6.0", ] [project.optional-dependencies] dev = ["pytest>=8", "pytest-asyncio>=0.24", "ruff>=0.6", "respx>=0.21"] [project.scripts] ip = "internetpressure.cli:app" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/internetpressure"] [tool.ruff] line-length = 120 target-version = "py312" [tool.pytest.ini_options] testpaths = ["tests"] asyncio_mode = "auto" markers = ["live: needs real ClickHouse/Postgres/Redis (skipped unless -m live)"]