Migrate to pyproject.toml
This commit is contained in:
35
pyproject.toml
Normal file
35
pyproject.toml
Normal file
@@ -0,0 +1,35 @@
|
||||
[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"
|
||||
Reference in New Issue
Block a user