Files
pyzebra/pyproject.toml
T
usov_i 1d896af102
pyzebra CI/CD pipeline / test-env (push) Successful in 2m14s
pyzebra CI/CD pipeline / prod-env (push) Skipped
pyzebra CI/CD pipeline / cleanup (push) Successful in 3s
Pin bokeh to 3.8.x
2026-05-21 11:32:34 +02:00

35 lines
795 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.0", # https://github.com/bokeh/bokeh/issues/13859
"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"