-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (70 loc) · 2.4 KB
/
pyproject.toml
File metadata and controls
78 lines (70 loc) · 2.4 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[build-system]
requires = ["setuptools >= 64", "setuptools_scm >= 8"]
build-backend = "setuptools.build_meta"
[project]
name = "nexusformat"
dynamic = ["version"]
description = "Python API to access NeXus data"
readme = "README.md"
license = {file = "COPYING"}
authors = [{name = "Raymond Osborn", email = "rayosborn@mac.com"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Visualization",
]
keywords = ["data format", "HDF5", "neutron scattering", "x-ray scattering"]
requires-python = ">=3.9"
dependencies = [
"chardet",
"colored",
"h5py",
"hdf5plugin",
"numpy",
"packaging",
"pygments",
"python-dateutil",
"scipy",
"importlib_resources; python_version <= '3.9'",
]
[dependency-groups]
dev = ["pytest"]
[project.urls]
Homepage = "https://nexpy.github.io/nexpy"
Repository = "https://github.com/nexpy/nexusformat.git"
Issues = "https://github.com/nexpy/nexusformat/issues"
Documentation = "https://nexpy.github.io/nexpy/pythonshell.html"
Changelog = "https://github.com/nexpy/nexusformat/releases"
[project.scripts]
nexusformat = "nexusformat.scripts.nexusformat:main"
nxcheck = "nexusformat.scripts.nxcheck:main"
nxconsolidate = "nexusformat.scripts.nxconsolidate:main"
nxdir = "nexusformat.scripts.nxdir:main"
nxduplicate = "nexusformat.scripts.nxduplicate:main"
nxinspect = "nexusformat.scripts.nxinspect:main"
nxstack = "nexusformat.scripts.nxstack:main"
[tool.setuptools_scm]
version_file = "src/nexusformat/_version.py"
[tool.setuptools.package-data]
"nexusformat.definitions.applications" = ["*.nxdl.xml"]
"nexusformat.definitions.base_classes" = ["*.nxdl.xml"]
"nexusformat.definitions.contributed_definitions" = ["*.nxdl.xml"]
"nexusformat.examples" = ["*.nxs", "*.h5"]
"nexusformat.notebooks" = ["*.pnyb"]
[tool.ruff]
line-length = 80
target-version = "py39"
exclude = ["src/nexusformat/notebooks"]
[tool.ruff.lint]
select = ["F", "W", "E"]
ignore = ["F403", "F405", "E721"]