-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (39 loc) · 1.22 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[build-system]
requires = ["setuptools >= 61.0", "wheel", "pytest", "numpy>=1.19.3", "h5py>=3.11.0", "hdf5plugin"]
build-backend = "setuptools.build_meta"
[project]
name = "hdfmap"
dynamic = ['version']
dependencies = [
"numpy",
"h5py",
"hdf5plugin",
]
requires-python = ">=3.10"
authors = [
{name = "Dan Porter", email = "[email protected]"},
]
maintainers = [
{name = "Dan Porter", email = "[email protected]"},
]
description = "Map objects within a HDF file and create a dataset namespace"
readme = "README.md"
license = {file = "LICENSE"}
keywords = [
'nexus',
]
classifiers = [
'Programming Language :: Python :: 3.10',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'License :: OSI Approved :: Apache Software License',
'Development Status :: 3 - Alpha',
]
[project.urls]
Homepage = "https://github.com/DiamondLightSource/hdfmap"
Documentation = "https://diamondlightsource.github.io/hdfmap/"
Repository = "https://github.com/DiamondLightSource/hdfmap"
"Bug Tracker" = "https://github.com/DiamondLightSource/hdfmap"
Changelog = "https://github.com/DiamondLightSource/hdfmap/blob/master/README.md"
[tool.setuptools.dynamic]
version = {attr = "hdfmap.__version__"}