19 lines
459 B
TOML
19 lines
459 B
TOML
[tool.poetry]
|
|
name = "lunduke-cli"
|
|
version = "0.1.0"
|
|
description = "An API client for the Lunduke Discourse server"
|
|
authors = ["Greg Gauthier <gmgauthier@protonmail.com>"]
|
|
readme = "README.md"
|
|
packages = [
|
|
{include = "config"},
|
|
{include = "lunduke"}
|
|
]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.12"
|
|
requests = ">=2.32.3,<3.0.0"
|
|
toml = ">=0.10.2, <1.0.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api" |