miscplot/pyproject.toml

38 lines
660 B
TOML
Raw Normal View History

2025-11-04 19:12:10 -08:00
[project]
name = "miscplot"
version = "0.1.0"
description = "Miscellaneous plots"
readme = "README.md"
license = { file = "LICENSE.md" }
authors = [
{ name="Jan Petykiewicz", email="jan@mpxd.net" },
]
homepage = "https://mpxd.net/code/jan/miscplot"
repository = "https://mpxd.net/code/jan/miscplot"
requires-python = ">=3.13"
dependencies = [
"matplotlib>=3.10.7",
"numpy>=2.3.4",
"polars>=1.35.1",
]
include = [
"LICENSE.md"
]
dynamic = ["version"]
[dependency-groups]
dev = [
"pyqt6>=6.10.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "klamath/__init__.py"