foxhole/pyproject.toml

42 lines
787 B
TOML
Raw Normal View History

2022-11-16 08:09:05 +01:00
[tool.poetry]
name = "foxhole"
2023-08-01 16:17:07 +02:00
version = "0.1.1"
2022-11-16 08:09:05 +01:00
description = ""
authors = ["SouthFox <master@southfox.me>"]
2023-08-01 16:17:07 +02:00
readme = "README.org"
2022-11-16 08:09:05 +01:00
[tool.poetry.dependencies]
2024-02-26 16:55:02 +01:00
python = "~3.11"
2024-02-26 13:19:10 +01:00
fastapi = "^0.110.0"
httpx = "^0.27.0"
uvicorn = "^0.27.1"
loguru = "^0.7.2"
sqlalchemy = "^2.0.27"
aiosqlite = "^0.20.0"
alembic = "^1.13.1"
tomli = "^2.0.1"
2023-07-29 11:00:46 +02:00
pycryptodome = "^3.18.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"
2024-02-26 13:19:10 +01:00
requests = "^2.31.0"
2023-07-30 14:57:44 +02:00
jinja2 = "^3.1.2"
2024-02-26 16:55:02 +01:00
hy = "^0.28.0"
2022-11-16 08:09:05 +01:00
2022-11-16 10:29:44 +01:00
[tool.poetry.group.dev.dependencies]
2024-02-26 13:19:10 +01:00
pytest = "^8.0.2"
pytest-asyncio = "^0.23.5"
respx = "^0.20.2"
2023-04-07 05:46:24 +02:00
factory-boy = "^3.2.1"
2023-07-30 23:58:28 +02:00
black = "^23.7.0"
2024-02-26 14:12:20 +01:00
pytest-dotenv = "^0.5.2"
2022-11-16 10:29:44 +01:00
2024-02-26 14:57:14 +01:00
2022-11-16 08:09:05 +01:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"