-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 753 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 753 Bytes
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
[build-system]
requires = ["setuptools>=40.8.0", "wheel", "setuptools_scm[toml]>=6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mtmhdf"
description = "imutum's packages for HDF"
readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
]
requires-python = ">=3.11"
dependencies = [
"pyhdf >= 0.10.5",
"netcdf4 >= 1.6.5",
"numpy >= 1.23.0",
]
dynamic = ["version"]
[project.optional-dependencies]
[tool.setuptools_scm]