indie-status-page/venv/lib/python3.11/site-packages/indie_status_page-0.1.0.dist-info/METADATA
IndieStatusBot 902133edd3 feat: indie status page MVP -- FastAPI + SQLite
- 8 DB models (services, incidents, monitors, subscribers, etc.)
- Full CRUD API for services, incidents, monitors
- Public status page with live data
- Incident detail page with timeline
- API key authentication
- Uptime monitoring scheduler
- 13 tests passing
- TECHNICAL_DESIGN.md with full spec
2026-04-25 05:00:00 +00:00

39 lines
No EOL
1.2 KiB
Text

Metadata-Version: 2.4
Name: indie-status-page
Version: 0.1.0
Summary: Lightweight, affordable status page tool for indie SaaS developers
License: MIT
Requires-Python: >=3.11
Requires-Dist: aiosqlite<1.0,>=0.19
Requires-Dist: alembic<2.0,>=1.13
Requires-Dist: apscheduler<4.0,>=3.10
Requires-Dist: fastapi<1.0,>=0.110
Requires-Dist: httpx<1.0,>=0.27
Requires-Dist: jinja2<4.0,>=3.1
Requires-Dist: pydantic-settings<3.0,>=2.1
Requires-Dist: pydantic<3.0,>=2.5
Requires-Dist: python-multipart<1.0,>=0.0.6
Requires-Dist: rich<14.0,>=13.0
Requires-Dist: sqlalchemy[asyncio]<3.0,>=2.0
Requires-Dist: typer<1.0,>=0.9
Requires-Dist: uvicorn[standard]<1.0,>=0.27
Provides-Extra: dev
Requires-Dist: httpx<1.0,>=0.27; extra == 'dev'
Requires-Dist: mypy<2.0,>=1.8; extra == 'dev'
Requires-Dist: pytest-asyncio<1.0,>=0.23; extra == 'dev'
Requires-Dist: pytest<9.0,>=8.0; extra == 'dev'
Requires-Dist: ruff<1.0,>=0.2; extra == 'dev'
Description-Content-Type: text/markdown
# Indie Status Page
Lightweight, self-hosted status page tool for indie SaaS developers.
## Quick Start
```bash
pip install -e ".[dev]"
uvicorn app.main:app --reload
```
See [TECHNICAL_DESIGN.md](TECHNICAL_DESIGN.md) for full documentation.