28 lines
597 B
TOML
28 lines
597 B
TOML
[tool.poetry]
|
|
name = "msys2-web"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Christoph Reiter <reiter.christoph@gmail.com>"]
|
|
license = "MIT"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.7"
|
|
httpx = {extras = ["http2"], version = "^0.15.5"}
|
|
fastapi = "^0.61.0"
|
|
uvicorn = {extras = ["standard"], version = "^0.12.1"}
|
|
aiofiles = "^0.5.0"
|
|
jinja2 = "^2.11.2"
|
|
fastapi-etag = "^0.2.1"
|
|
pgpdump = "^1.5"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
mypy = "^0.782"
|
|
flake8 = "^3.8.2"
|
|
pytest = "^6.0.1"
|
|
requests = "^2.23.0"
|
|
respx = "^0.13.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=0.12"]
|
|
build-backend = "poetry.masonry.api"
|