17 lines
331 B
TOML
17 lines
331 B
TOML
[project]
|
|
name = "jmktools"
|
|
version = "0.1.0"
|
|
description = "JMK Engineering Python Toolboox"
|
|
readme = "README.md"
|
|
requires-python = ">=3.14"
|
|
dependencies = [
|
|
"numpy>=2.4.2",
|
|
"pandas>=3.0.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
jmktools = "jmktools:main"
|
|
|
|
[build-system]
|
|
requires = ["uv_build>=0.10.0,<0.11.0"]
|
|
build-backend = "uv_build"
|