grzegorz-clients/pyproject.toml

29 lines
771 B
TOML
Raw Normal View History

[tool.poetry]
name = "grzegorz-clients"
version = "0.2.0"
description = "Various clients to interact with the Grzegorz REST API"
authors = ["Peder Bergebakken Sundt <pbsds@hotmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
2024-05-18 23:28:55 +02:00
python = ">=3.8.1,<4.0"
2023-08-17 21:45:27 +02:00
remi = "1.0"
requests = ">=2.27.1,<3"
2024-03-31 04:46:54 +02:00
rich = ">=13.3.5"
2023-08-17 21:45:27 +02:00
typer = ">=0.4.0"
2024-03-31 04:46:54 +02:00
urllib3 = ">=1.26.8,<3"
2024-05-18 23:28:55 +02:00
textual = {version = "^0.61.0", extras = ["tui"]}
2024-05-18 23:28:55 +02:00
[tool.poetry.group.dev.dependencies]
python-lsp-server = {extras = ["all"], version = "^1.11.0"}
textual-dev = "^1.5.1"
[tool.poetry.scripts]
grzegorz-webui = "grzegorz_clients.__main__:cli"
2024-03-31 04:46:54 +02:00
grzegorzctl = "grzegorz_clients.cli:cli"
2024-05-18 23:28:55 +02:00
grzegorztui = "grzegorz_clients.tui:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"