-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (51 loc) · 1.48 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools >= 61.0", "wheel", "pytest", "numpy", "h5py", "hdf5plugin", "hdfmap", "pillow"]
build-backend = "setuptools.build_meta"
[project]
name = "nexus2srs"
dynamic = ['version']
dependencies = [
"numpy",
"h5py",
"hdf5plugin",
"hdfmap",
"pillow"
]
requires-python = ">=3.10"
authors = [
{name = "Dan Porter", email = "[email protected]"},
]
maintainers = [
{name = "Dan Porter", email = "[email protected]"},
]
description = "Program to convert NeXus (.nxs) scan Files to the classic ASCII SRS .dat files."
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/nexus2srs"
Documentation = "https://github.com/DiamondLightSource/nexus2srs"
Repository = "https://github.com/DiamondLightSource/nexus2srs"
"Bug Tracker" = "https://github.com/DiamondLightSource/nexus2srs"
Changelog = "https://github.com/DiamondLightSource/nexus2srs/blob/master/README.md"
[tool.setuptools.dynamic]
version = {attr = "nexus2srs.__version__"}
[tool.setuptools.packages.find]
where = ["."]
include = ["nexus2srs"]
namespaces = true
[tool.pytest.ini_options]
pythonpath = [
".",
]
[project.scripts]
nexus2srs = "nexus2srs.cli:cli_nexus2srs"