17 lines
481 B
TOML
17 lines
481 B
TOML
|
[tool.poetry]
|
||
|
name = "whitelist-api"
|
||
|
version = "0.1.0"
|
||
|
description = "A whitelist API for the Asgard Eternal Squad Server"
|
||
|
authors = ["Price Hiller <price@orion-technologies.io>"]
|
||
|
license = "GPLv3"
|
||
|
readme = "README.md"
|
||
|
|
||
|
[tool.poetry.dependencies]
|
||
|
python = "^3.11"
|
||
|
psycopg = {extras = ["binary"], version = "^3.1.12"}
|
||
|
litestar = {extras = ["jwt", "opentelemetry", "standard"], version = "^2.2.1"}
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|