-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
79 lines (67 loc) · 2.39 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[build-system]
requires = [
"setuptools >= 61.0.0",
"packaging",
"cython >= 0.29.22",
"numpy",
]
build-backend = "setuptools.build_meta"
[project]
name = "pyepr"
authors = [
{name = "Antonio Valentino", email = "[email protected]"},
]
description = "Python ENVISAT Product Reader API"
requires-python = ">=3.7, <4"
keywords = ["satellite", "reader", "envisat"]
license = {text = "GPL-3.0-or-later"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Cython",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
]
dependencies = [
"numpy>=1.7",
]
dynamic = ["version"]
[project.readme]
text = """\
PyEPR provides Python_ bindings for the ENVISAT_ Product Reader C API
(`EPR API`_) for reading satellite data from ENVISAT_
ESA_ (European Space Agency) mission.
PyEPR, as well as the `EPR API`_ for C, supports ENVISAT_ MERIS, AATSR
Level 1B and Level 2 and also ASAR data products. It provides access to
the data either on a geophysical (decoded, ready-to-use pixel samples)
or on a raw data layer. The raw data access makes it possible to read
any data field contained in a product file.
.. _Python: https://www.python.org
.. _`EPR API`: https://github.com/bcdev/epr-api
.. _ENVISAT: https://envisat.esa.int
.. _ESA: https://earth.esa.int
"""
content-type = "text/x-rst"
[project.urls]
homepage = "https://github.com/avalentino/pyepr"
documentation = "https://pyepr.readthedocs.io"
repository = "https://github.com/avalentino/pyepr.git"
changelog = "https://github.com/avalentino/pyepr/blob/master/doc/NEWS.rst"
issues = "https://github.com/avalentino/pyepr/issues"
[tool.setuptools]
packages = ["epr"]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "epr.__version__"}