foxhole/pyproject.toml
2023-07-29 10:12:22 +08:00

36 lines
771 B
TOML

[tool.poetry]
name = "foxhole"
version = "0.1.0"
description = ""
authors = ["SouthFox <master@southfox.me>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
fastapi = "^0.87.0"
httpx = "^0.23.0"
uvicorn = {extras = ["standard"], version = "^0.19.0"}
loguru = "^0.6.0"
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"
invoke = "^2.0.0"
cffi = "^1.15.1"
pyld = "^2.0.3"
requests = "^2.28.2"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-asyncio = "^0.21.0"
respx = "^0.20.1"
factory-boy = "^3.2.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"