-
Notifications
You must be signed in to change notification settings - Fork 25
/
pyproject.toml
56 lines (51 loc) · 1.58 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
[build-system]
requires = ["py-cpuinfo==9.0.0", "setuptools>=62.4.0", "wheel>=0.34.0"]
build-backend = "setuptools.build_meta"
[project]
name = "hdf5plugin"
authors = [
{name = "ESRF", email = "[email protected]"}
]
description = "HDF5 Plugins for Windows, MacOS, and Linux"
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"License :: OSI Approved :: BSD License",
"License :: OSI Approved :: zlib/libpng License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = ["h5py>=3.0.0"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/silx-kit/hdf5plugin"
Documentation = "http://www.silx.org/doc/hdf5plugin/latest/"
Repository = "https://github.com/silx-kit/hdf5plugin"
[project.optional-dependencies]
doc = [
"ipython",
"nbsphinx",
"sphinx",
"sphinx_rtd_theme",
]
test = [
"blosc2>=2.5.1;python_version>='3.9'",
"blosc2-grok>=0.2.2;python_version>='3.9'",
]
[tool.setuptools]
packages = ["hdf5plugin"]
package-dir = {"" = "src"}
[tool.setuptools.dynamic]
version = {attr = "hdf5plugin._version.version"}