Files
cli/pyproject.toml
T
elordenador 7f1cb97742 Add new dependencies and update existing packages in uv.lock
- Added `certifi` version 2026.4.22 and `charset-normalizer` version 3.4.7 with multiple wheel options.
- Introduced `idna` version 3.14 and `prettytable` version 3.17.0 with their respective wheel files.
- Updated `requests` to version 2.34.0, including its dependencies.
- Added `urllib3` version 2.7.0 and `wcwidth` version 0.7.0 with their wheel files.
- Updated `cli` package metadata to include new dependencies: `prettytable` and `requests`.
2026-05-12 18:39:03 +02:00

18 lines
357 B
TOML

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "rscli"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"prettytable>=3.17.0",
"requests>=2.34.0",
"typer>=0.25.1",
]
[project.scripts]
rcli = "rscli.main:app"