foxhole/pyproject.toml

22 lines
429 B
TOML
Raw Normal View History

2022-11-16 08:09:05 +01:00
[tool.poetry]
name = "foxhole"
version = "0.1.0"
description = ""
authors = ["SouthFox <master@southfox.me>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
2022-11-16 10:29:44 +01:00
fastapi = "^0.87.0"
httpx = "^0.23.0"
invoke = "^1.7.3"
uvicorn = {extras = ["standard"], version = "^0.19.0"}
2022-11-16 08:09:05 +01:00
2022-11-16 10:29:44 +01:00
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
2022-11-16 08:09:05 +01:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"