[build-system]
requires = ["flit_core>=3.9,<4"]
build-backend = "flit_core.buildapi"

[project]
name = "micropie"
version = "0.28"
description = "An ultra micro ASGI web framework"
keywords = ["micropie", "asgi", "microframework", "http"]
readme = "docs/README.md"
authors = [{ name = "Harrison Erd", email = "[email protected]" }]
license = {file = "LICENSE"}
classifiers = [
    "Framework :: AsyncIO",
    "Environment :: Web Environment",
    "Topic :: Internet :: WWW/HTTP",
    "Topic :: Internet :: WWW/HTTP :: WSGI",
    "Topic :: Software Development :: Libraries :: Application Frameworks",
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: BSD License",
    "Intended Audience :: Developers",
    "Operating System :: OS Independent",
]

[project.optional-dependencies]
standard = ["jinja2", "multipart"]
all = ["jinja2", "multipart", "orjson", "uvicorn"]

[project.urls]
Homepage = "https://patx.github.io/micropie"
Repository = "https://github.com/patx/micropie"