mirror of
https://github.com/tgorordo/smithy.git
synced 2026-06-05 16:22:15 -07:00
init. core algorithm, initial testing, basic cli.
This commit is contained in:
commit
8836c49091
12 changed files with 2297 additions and 0 deletions
35
pyproject.toml
Normal file
35
pyproject.toml
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
[project]
|
||||
name = "smithy"
|
||||
version = "0.1.0"
|
||||
description = "Add your description here"
|
||||
readme = "README.md"
|
||||
authors = [
|
||||
{ name = "Thomas (Tom) C. Gorordo", email = "tcgorordo@gmail.com" }
|
||||
]
|
||||
requires-python = ">=3.13"
|
||||
dependencies = [
|
||||
"click>=8.4.0",
|
||||
"polars>=1.40.1",
|
||||
"rich>=15.0.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
smithy = "smithy:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["uv_build>=0.11.7,<0.12.0"]
|
||||
build-backend = "uv_build"
|
||||
|
||||
[dependency-groups]
|
||||
dev = [
|
||||
"marimo[recommended]>=0.23.6",
|
||||
"py-spy>=0.4.2",
|
||||
"pyclean>=3.6.0",
|
||||
"pyinstaller>=6.20.0",
|
||||
"pyinstrument>=5.1.2",
|
||||
"pyperf>=2.10.0",
|
||||
"pyright>=1.1.409",
|
||||
"pytest>=9.0.3",
|
||||
"pytest-benchmark>=5.2.3",
|
||||
"ruff>=0.15.13",
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue