forked from JPL-Evapotranspiration-Algorithms/FLiESANN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (31 loc) · 879 Bytes
/
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
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
[project]
name = "FLiESANN"
version = "1.1.1"
description = "Forest Light Environmental Simulator (FLiES) Radiative Transfer Model Artificial Neural Network (ANN) Implementation in Python"
readme = "README.md"
authors = [
{ name = "Gregory H. Halverson", email = "gregory.h.halverson@jpl.nasa.gov" },
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"geos5fp",
"keras==2.15",
"koppengeiger",
"numpy<2",
"pandas",
"rasters",
"sentinel-tiles",
"solar-apparent-time",
"sun-angles",
"tensorflow==2.15.1"
]
requires-python = ">=3.11"
[tool.setuptools.package-data]
FLiESANN = ["*.txt", "*.h5"]
[project.urls]
"Homepage" = "https://github.com/JPL-Evapotranspiration-Algorithms/FLiESANN"