25 lines
673 B
TOML
25 lines
673 B
TOML
|
[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"
|
||
|
youtube_dl = ">=2021.12.17"
|
||
|
remi = {url = "https://github.com/dddomodossola/remi/archive/v1.0.tar.gz"}
|
||
|
requests = ">=2.27.1,<3"
|
||
|
typer = "^0.4.0"
|
||
|
urllib3 = "^1.26.8"
|
||
|
|
||
|
[tool.poetry.dev-dependencies]
|
||
|
python-lsp-server = {extras = ["all"], version = "^1.3.3"}
|
||
|
|
||
|
[tool.poetry.scripts]
|
||
|
grzegorz-webui = "grzegorz_clients.__main__:cli"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core>=1.0.0"]
|
||
|
build-backend = "poetry.core.masonry.api"
|