[project] name = "satelliteindex" version = "0.1.0" description = "SatelliteIndex.io — global orbital infrastructure intelligence platform: connectors, canonical database, orbital service and API" requires-python = ">=3.12" dependencies = [ "fastapi>=0.115", "uvicorn[standard]>=0.30", "pydantic>=2.8", "pydantic-settings>=2.4", "sqlalchemy[asyncio]>=2.0.35", "asyncpg>=0.30", "alembic>=1.13", "httpx>=0.27", "orjson>=3.10", "typer>=0.12", "rich>=13", "sgp4>=2.23", "numpy>=2", "redis>=5.1", "apscheduler>=3.10,<4", "python-ulid>=2.7", "pyyaml>=6", "python-dateutil>=2.9", "tenacity>=9", "python-slugify>=8", ] [project.optional-dependencies] dev = ["pytest>=8", "pytest-asyncio>=0.24", "ruff>=0.6", "respx>=0.21", "httpx>=0.27"] [project.scripts] si = "satelliteindex.cli:app" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/satelliteindex"] [tool.ruff] line-length = 120 target-version = "py312" [tool.pytest.ini_options] testpaths = ["tests"] asyncio_mode = "auto" markers = ["live: hits real external endpoints (skipped unless -m live)"]