19 lines
422 B
TOML
19 lines
422 B
TOML
[project]
|
|
name = "lunduke-cli"
|
|
version = "0.1.0"
|
|
description = "An API client for the Lunduke Discourse server"
|
|
authors = [
|
|
{name = "Greg Gauthier",email = "gmgauthier@protonmail.com"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"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"
|