35 lines
745 B
TOML
35 lines
745 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.8"
|
|
dependencies = [
|
|
"numpy",
|
|
"scipy",
|
|
"h5py",
|
|
"bokeh ~=2.4",
|
|
"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" |