-
Notifications
You must be signed in to change notification settings - Fork 86
/
pyproject.toml
60 lines (56 loc) · 1.73 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
modis_check = "scripts.modis_check:main"
modis_convert = "scripts.modis_convert"
modis_download_from_list = "scripts.modis_download_from_list:main"
modis_download = "scripts.modis_download:main"
modis_mosaic = "scripts.modis_mosaic:main"
modis_multiparse = "scripts.modis_multiparse:main"
modis_parse = "scripts.modis_parse:main"
modis_quality = "scripts.modis_quality:main"
[project]
name = "pyModis"
license = { text = "GNU General Public License v2 or later" }
version = "2.4.1"
authors = [
{ name="Luca Delucchi", email="[email protected]" },
{ name="Ingmar Nitze" },
{ name="Xavier Corredor Llano" },
{ name="Martin Landa" },
{ name="Anton Petrov" },
]
maintainers = [
{ name="Luca Delucchi", email="[email protected]" }
]
description = "Python library for MODIS data"
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Topic :: Scientific/Engineering :: GIS",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
]
dependencies = [
"numpy",
"future",
"requests",
"GDAL",
]
[project.optional-dependencies]
gui = [
"wxPython",
"wxPython-common"
]
[project.urls]
"Homepage" = "http://www.pymodis.org"
"Issues" = "https://github.com/lucadelu/pyModis/issues"
"Source" = "https://github.com/lucadelu/pyModis/"