32 lines
678 B
TOML
32 lines
678 B
TOML
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
name = "hubgw"
|
|
version = "0.1.0"
|
|
description = "FastAPI Gateway for HubMC"
|
|
authors = ["itqop <leonkl32@gmail.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
fastapi = "^0.104.0"
|
|
uvicorn = {extras = ["standard"], version = "^0.24.0"}
|
|
pydantic = "^2.5.0"
|
|
pydantic-settings = "^2.1.0"
|
|
sqlalchemy = "^2.0.0"
|
|
asyncpg = "^0.29.0"
|
|
loguru = "^0.7.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
pytest = "^7.4.0"
|
|
pytest-asyncio = "^0.21.0"
|
|
httpx = "^0.25.0"
|
|
|
|
[tool.poetry.scripts]
|
|
hubgw = "hubgw.__main__:main"
|
|
|
|
[tool.poetry.packages]
|
|
{include = "hubgw", from = "src"}
|