forked from Shifty/pyserveX
21 lines
494 B
TOML
21 lines
494 B
TOML
[project]
|
|
name = "pyserve"
|
|
version = "0.6.0"
|
|
description = "Simple HTTP Web server written in Python"
|
|
authors = [
|
|
{name = "Илья Глазунов",email = "i.glazunov@sapiens.solutions"}
|
|
]
|
|
license = {text = "MIT"}
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"starlette (>=0.47.3,<0.48.0)",
|
|
"uvicorn[standard] (>=0.35.0,<0.36.0)",
|
|
"pyyaml (>=6.0,<7.0)"
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|