File: pyproject.toml

package info (click to toggle)
python-hdf4 0.11.6-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,328 kB
  • sloc: ansic: 9,252; python: 3,445; makefile: 192
file content (45 lines) | stat: -rw-r--r-- 1,146 bytes parent folder | download | duplicates (2)
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
[build-system]
requires = [
	"setuptools",
	"setuptools-scm",
	"numpy",
]
build-backend = "setuptools.build_meta"

[project]
name = "pyhdf"
dynamic = ["version"]
description = "Python interface to the NCSA HDF4 library"
readme = "README.md"
keywords = ['hdf4', 'netcdf', 'numpy', 'python', 'pyhdf']
classifiers = [
	"Development Status :: 5 - Production/Stable",
	"Intended Audience :: Science/Research",
	"Intended Audience :: Developers",
	"License :: OSI Approved",
	"Programming Language :: C",
	"Programming Language :: Python",
	"Programming Language :: Python :: 3",
	"Topic :: Software Development",
	"Topic :: Scientific/Engineering",
	"Operating System :: Microsoft :: Windows",
	"Operating System :: POSIX",
	"Operating System :: Unix",
	"Operating System :: MacOS",
]
license = {text = "MIT License"}
authors = [
	{name = "Andre Gosselin", email = "Andre.Gosselin@dfo-mpo.gc.ca"},
	{name = "Travis E. Oliphant", email = "teoliphant@gmail.com"},
]
maintainers = [
	{name = "Fazlul Shahriar", email = "fshahriar@gmail.com"},
]
dependencies = [
	"numpy"
]

[project.urls]
Homepage = 'https://github.com/fhs/pyhdf'

[tool.setuptools_scm]