foxhole/pyproject.toml

32 lines
666 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"
uvicorn = {extras = ["standard"], version = "^0.19.0"}
loguru = "^0.6.0"
sqlalchemy = "^1.4.44"
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"
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"