22 lines
452 B
TOML
22 lines
452 B
TOML
[tool.poetry]
|
|
name = "CustomIWMServer"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["magmaus3 <magmaus3@disroot.org>"]
|
|
|
|
[tool.poetry.scripts]
|
|
start = "customiwmserver.main:start"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
fastapi = "^0.86.0"
|
|
pymongo = "^4.3.2"
|
|
uvicorn = "^0.19.0"
|
|
python-multipart = "^0.0.5"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
pytest = "^5.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|