-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
51 lines (46 loc) · 1.45 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
[build-system]
requires = ["h5io", "h5py", "numpy", "pandas", "setuptools", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "h5io_browser"
description = "Easy navigation and data storage for HDF5"
authors = [
{ name = "Jan Janssen", email = "janssen@mpie.de" },
]
readme = "README.md"
license = { file = "LICENSE" }
keywords = ["hdf5", "h5io"]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"h5io==0.2.4",
"h5py==3.12.1",
"numpy==2.1.3",
"pandas==2.2.3",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/h5io/h5io_browser"
Documentation = "https://github.com/h5io/h5io_browser"
Repository = "https://github.com/h5io/h5io_browser"
[tool.setuptools.packages.find]
include = ["h5io_browser*"]
[tool.setuptools.dynamic]
version = {attr = "h5io_browser.__version__"}
[tool.versioneer]
VCS = "git"
style = "pep440-pre"
versionfile_source = "h5io_browser/_version.py"
parentdir_prefix = "h5io_browser"
tag_prefix = "h5io_browser-"