grzegorz-clients/pyproject.toml

26 lines
647 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]
python = ">=3.7,<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"
[tool.poetry.dev-dependencies]
2023-08-17 21:45:27 +02:00
python-lsp-server = {extras = ["all"], version = "^1.5.0"}
[tool.poetry.scripts]
grzegorz-webui = "grzegorz_clients.__main__:cli"
2024-03-31 04:46:54 +02:00
grzegorzctl = "grzegorz_clients.cli:cli"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"