initial commit
This commit is contained in:
commit
40a33ecf13
11 changed files with 1530 additions and 0 deletions
37
pyproject.toml
Normal file
37
pyproject.toml
Normal 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"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue