move cli script to reduce core package dependencies

This commit is contained in:
Thomas (Tom) C. Gorordo 2026-05-25 00:15:49 -07:00
parent 2138a0ea6b
commit 8b39991bcd
Signed by: tgorordo
GPG key ID: 0CBED22BB0D94490
11 changed files with 251 additions and 141 deletions

View file

@ -8,13 +8,17 @@ authors = [
]
requires-python = ">=3.13"
dependencies = [
"click>=8.4.0",
"polars>=1.40.1",
]
[project.optional-dependencies]
cli = [
"click>=8.4.0",
"rich>=15.0.0",
]
[project.scripts]
smithy = "smithy:cli"
#[project.scripts]
#smithy = "smithycmd:cli"
[build-system]
requires = ["uv_build>=0.11.7,<0.12.0"]