29 lines
631 B
TOML
29 lines
631 B
TOML
[tool.poetry]
|
|
name = "foxhole"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["SouthFox <master@southfox.me>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
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"
|
|
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.2.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|