Files
pyzebra/pyproject.toml
Ivan Usov e6e97be58a
All checks were successful
pyzebra CI/CD pipeline / test-env (push) Successful in 2m20s
pyzebra CI/CD pipeline / prod-env (push) Has been skipped
pyzebra CI/CD pipeline / cleanup (push) Successful in 1s
Migrate to python/3.10 and bokeh/3.8
* use TabPanel instead of Panel
* use scatter(marker=...) instead of specific marker function
* replace gridplot with grid
2026-02-23 15:50:52 +01:00

35 lines
746 B
TOML

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pyzebra"
dynamic = ["version"] # version will be read from __init__.py
requires-python = ">=3.10"
dependencies = [
"numpy",
"scipy",
"h5py",
"bokeh ~=3.8",
"numba",
"lmfit >=1.0.2",
]
authors = [
{name = "Paul Scherrer Institute"}
]
maintainers = [
{name = "Ivan Usov", email = "ivan.usov@psi.ch"}
]
description = "An experimental data analysis library for zebra instrument."
readme = "README.md"
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
[project.urls]
Homepage = "https://gitea.psi.ch/zebra/pyzebra"
[tool.hatch.build.targets.wheel]
include = ["pyzebra"]
[tool.hatch.version]
path = "pyzebra/__init__.py"