poetry: add textual, lock

This commit is contained in:
Peder Bergebakken Sundt 2024-05-18 23:28:55 +02:00
parent e00ae9e344
commit 76aaaa0a45
2 changed files with 836 additions and 432 deletions

1259
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -6,19 +6,22 @@ authors = ["Peder Bergebakken Sundt <pbsds@hotmail.com>"]
license = "MIT" license = "MIT"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.7,<4.0" python = ">=3.8.1,<4.0"
remi = "1.0" remi = "1.0"
requests = ">=2.27.1,<3" requests = ">=2.27.1,<3"
rich = ">=13.3.5" rich = ">=13.3.5"
typer = ">=0.4.0" typer = ">=0.4.0"
urllib3 = ">=1.26.8,<3" urllib3 = ">=1.26.8,<3"
textual = {version = "^0.61.0", extras = ["tui"]}
[tool.poetry.dev-dependencies] [tool.poetry.group.dev.dependencies]
python-lsp-server = {extras = ["all"], version = "^1.5.0"} python-lsp-server = {extras = ["all"], version = "^1.11.0"}
textual-dev = "^1.5.1"
[tool.poetry.scripts] [tool.poetry.scripts]
grzegorz-webui = "grzegorz_clients.__main__:cli" grzegorz-webui = "grzegorz_clients.__main__:cli"
grzegorzctl = "grzegorz_clients.cli:cli" grzegorzctl = "grzegorz_clients.cli:cli"
grzegorztui = "grzegorz_clients.tui:main"
[build-system] [build-system]
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]