-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
97 lines (91 loc) · 2.19 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ETtoolbox"
version = "1.0.0"
description = "Evapotranspiration Product Generator for the USBR-JPL Second Generation ET Toolbox"
readme = "README.md"
authors = [
{ name = "Gregory H. Halverson", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"affine",
"astropy",
"beautifulsoup4",
"boto3",
"colored_logging",
"descartes",
"ephem",
"gdal>3.1",
"geopandas",
"geos5fp",
"gedi_canopy_height",
"harmonized-landsat-sentinel",
"h5py",
"imageio",
"imageio-ffmpeg",
"jdcal",
"jupyter",
"keras",
"koppengeiger",
"matplotlib",
"mgrs",
"msgpack",
"msgpack_numpy",
"netcdf4",
"nose",
"numpy",
"pybind11",
"pybind11_cmake",
"pycksum",
"pygeos",
"pygrib",
"pykdtree",
"pyresample",
"pillow",
"pysolar",
"pytest",
"rasters>=1.0.5",
"rasterio>1.0.0",
"requests",
"scikit-image",
"scipy",
"sentinelsat",
"six",
"shapely",
"solar-apparent-time",
"spacetrack",
"termcolor",
"tensorflow",
"untangle",
"urllib3",
"wget",
"xmltodict",
]
requires-python = ">=3.11"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"pytest-cov",
]
[tool.setuptools.package-data]
ETtoolbox = ["*.txt"]
[project.urls]
Homepage = "https://github.com/ET-Toolbox/ET-Toolbox-Product-Generator"
[project.scripts]
LANCE-VIIRS-Dates = "ETtoolbox.available_lance_dates:main"
ET-Toolbox-Credentials = "ETtoolbox.check_credentials:main"
ET-Toolbox-Tile = "ETtoolbox.ETtoolbox_tile:main"
ET-Toolbox-Rio-Grande = "ETtoolbox.ETtoolbox_riogrande:main"
ET-Toolbox-Historical-Fine = "ETtoolbox.ETtoolbox_historical_fine:main"
ET-Toolbox-Historical-Coarse = "ETtoolbox.ETtoolbox_historical_coarse:main"
ET-Toolbox-Hindcast-Coarse = "ETtoolbox.ETtoolbox_hindcast_coarse:main"
New-Mexico-VIIRS-Server = "new_mexico.new_mexico:main"
[tool.setuptools.packages.find]
include = ["ETtoolbox"]
exclude = ["calval", "testing"]