-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
81 lines (75 loc) · 1.66 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
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "SBG-TIR-L4-JET"
version = "1.0.0"
description = "SBG-TIR OTTER Collection 1 Ecosystems Product Generating Executable (PGE)"
readme = "README.md"
authors = [
{ name = "Gregory H. Halverson", email = "[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"affine",
"astropy",
"breathing-earth-system-simulator>=1.1.3",
"colored_logging",
"ECOv002-CMR>=1.0.5",
"ECOv002-granules>=1.0.3",
"FLiESANN>=1.1.2",
"FLiESLUT",
"gedi-canopy-height",
"geopandas",
"geos5fp>=1.0.4",
"h5py",
"koppengeiger>=1.0.4",
"matplotlib",
"MCD12C1-2019-v006",
"modisci>=1.1.2",
"msgpack",
"msgpack_numpy",
"netCDF4",
"numpy",
"pandas",
"pillow",
"pycksum",
"pykdtree",
"pyproj",
"pyresample",
"rasterio",
"rasters>=1.4.6",
"SBG-TIR-granules>=0.1.2",
"scikit-image",
"scikit-learn",
"scipy",
"sentinel-tiles>=1.0.2",
"shapely",
"six",
"soil-capacity-wilting",
"solar-apparent-time>=1.3.1",
"sun-angles",
"tensorflow",
"untangle",
"xmltodict"
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"build",
"pytest>=6.0",
"pytest-cov",
"jupyter",
"pytest",
"twine"
]
[tool.setuptools.package-data]
SBG_TIR_L4_JET = ["*.txt"]
[project.urls]
"Homepage" = "https://github.com/sbg-tir/SBG-TIR-L4-JET"
[tool.setuptools.packages.find]
include = ["SBG_TIR_L4_JET"]
exclude = []