-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 1.14 KB
/
pyproject.toml
File metadata and controls
28 lines (26 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
[project]
description = """
FastKit is a lightweight FastAPI project generator that helps you scaffold new applications in seconds.
It provides ready-to-use boilerplate code, database integrations, caching layers, and common services,
all configurable via a simple CLI. Features include pluggable integrations
(Postgres, SQLite, Redis, Celery, RabbitMQ, etc.), customizable project templates,
an interactive CLI, and the ability to add new services anytime. FastKit gives you a clean,
production-ready project structure so you can focus on building features, not boilerplate.
"""
name = "fastkit"
version = "0.1.0"
authors = [{ name = "Kalyan Kanuri", email = "[email protected]" }]
readme = "README.md"
requires-python = ">=3.12,<4.0"
dependencies = [
"fastapi (>=0.116.1,<0.117.0)",
"rich (>=14.1.0,<15.0.0)",
"halo (>=0.0.31,<0.0.32)",
"typer (>=0.17.3,<0.18.0)",
"inquirerpy (>=0.3.4,<0.4.0)",
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
fastkit = "fastkit.cli.app:app"