Metadata-Version: 2.4
Name: fastapi-lite-admin
Version: 0.1.2
Summary: A lightweight, pluggable admin panel for FastAPI
License: MIT
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: fastapi>=0.100.0
Requires-Dist: sqlalchemy>=2.0.0
Requires-Dist: pydantic>=2.0.0
Requires-Dist: jinja2>=3.1.0
Requires-Dist: python-multipart>=0.0.6
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: httpx; extra == "dev"
Requires-Dist: uvicorn; extra == "dev"
Dynamic: license-file

# FastAPI Lite Admin

A premium, lightweight, pluggable admin panel for FastAPI and SQLAlchemy.

## Features

- **Zero-config CRUD**: Automatically generate admin interfaces for your models.
- **ORM Agnostic**: Initial support for SQLAlchemy, designed to support others.
- **API First**: All admin actions are available via a REST API.
- **Lightweight UI**: Simple Jinja2 templates for the dashboard and forms.

## Quick Start

(Documentation coming soon)

## Development

```bash
# Install dependencies
pip install -e ".[dev]"

# Run example
python -m example.main
```
