foxhole/pyproject.toml

37 lines
771 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]
2023-07-29 04:12:22 +02:00
python = "^3.11"
2022-11-16 10:29:44 +01:00
fastapi = "^0.87.0"
httpx = "^0.23.0"
uvicorn = {extras = ["standard"], version = "^0.19.0"}
loguru = "^0.6.0"
2023-07-29 04:12:22 +02:00
sqlalchemy = "^2.0.19"
aiosqlite = "^0.17.0"
alembic = {extras = ["tz"], version = "^1.8.1"}
tomli = "^2.0.1"
pycryptodome = "^3.15.0"
prompt-toolkit = "^3.0.33"
pydantic = "^1.10.2"
tomli-w = "^1.0.0"
2023-03-16 07:56:03 +01:00
invoke = "^2.0.0"
cffi = "^1.15.1"
2023-04-01 18:12:36 +02:00
pyld = "^2.0.3"
requests = "^2.28.2"
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"
2023-04-03 03:50:22 +02:00
pytest-asyncio = "^0.21.0"
2023-04-06 11:36:26 +02:00
respx = "^0.20.1"
2023-04-07 05:46:24 +02:00
factory-boy = "^3.2.1"
2022-11-16 10:29:44 +01:00
2022-11-16 08:09:05 +01:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"