27 lines
481 B
TOML
27 lines
481 B
TOML
[project]
|
|
name = "jmktools"
|
|
version = "0.2b1"
|
|
description = "JMK Engineering Python Toolboox"
|
|
readme = "README.md"
|
|
license = "AGPL-3.0-or-later"
|
|
license-files = [
|
|
"LICENSE",
|
|
]
|
|
requires-python = ">=3.13"
|
|
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"
|
|
|
|
[dependency-groups]
|
|
docs = [
|
|
"sphinx>=9.1.0",
|
|
"sphinx-book-theme>=1.1.4",
|
|
]
|