-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.78 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyTSEB"
version = "2.1.0"
description = "Two Source Energy Balance (TSEB) Models to estimate sensible and latent heat flux (evapotranspiration) from radiometric surface temperature data"
authors = [
{ name = "Héctor Nieto", email = "hector.nieto@csic.es" },
{ name = "Radoslaw Guzinski", email = "rmgu@dhigroup.com"},
{ name = "Willam P. Kustas", email = "bill.kustas@usda.gov"}
]
maintainers = [
{ name = "Héctor Nieto", email = "hector.nieto@csic.es" },
{ name = "Radoslaw Guzinski", email = "rmgu@dhigroup.com"},
]
keywords = ['TSEB',
'Two Source Energy Balance',
'Resistance Energy Balance',
'OSEB',
'One Source Energy Balance',
'DTD',
'Dual Time Differenced',
'Remote Sensing']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Hydrology",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 3"]
license = "GPL-3.0-or-later"
license-files = ["LICENSE"]
readme = "README.md"
requires-python = ">=3.6"
dependencies = ["gdal>=3.8",
"numpy",
"scipy",
"pandas",
"jupyter",
"notebook",
"bokeh",
"netCDF4",
"Py6S",
"radiative-transfer-models"
]
[project.urls]
Homepage = "https://github.com/hectornieto/pyTSEB"
Documentation = "https://pytseb.readthedocs.io"
[tool.setuptools]
packages = ["pyTSEB"]