initial commit

This commit is contained in:
Jan Petykiewicz 2025-11-04 19:12:10 -08:00
commit 40a33ecf13
11 changed files with 1530 additions and 0 deletions

37
pyproject.toml Normal file
View file

@ -0,0 +1,37 @@
[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"