Metadata-Version: 2.1
Name: admin-table
Version: 0.0.20
Summary: Another Dashboard Library for displaying mostly tables
License: MIT
Author: Adam Verner
Author-email: averner@averner.cz
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Provides-Extra: fastapi
Requires-Dist: fastapi ; extra == "fastapi"
Description-Content-Type: text/markdown

# Admin Table

## Examples
### Running the examples
First install dependencies neccessary to run the examples
```bash
pip install admin_table
pip install uvicorn sqlalchemy fastapi[standard]
```

Then run the examples
```bash
poetry run python examples/fastapi_simple.py
```

### Development
#### Publishing
from root of the project run `./scripts/build.sh` to build the project and publish it.
To publish the project to pypi, run `poetry publish`
