-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (54 loc) · 1.37 KB
/
pyproject.toml
File metadata and controls
62 lines (54 loc) · 1.37 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
60
61
62
[build-system]
requires = ["setuptools>=60", "setuptools-scm>=8.0", "wheel"]
[project]
name = "FLiESANN"
version = "2.13.0"
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 = [
"ECOv002-calval-tables>=1.10.0",
"ECOv002-CMR",
"GEOS5FP>=2.12.0",
"keras",
"koppengeiger",
"MCD12C1-2019-v006",
"NASADEM>=2.0.1",
"netCDF4",
"numpy",
"pandas",
"rasters>=1.13.1",
"sentinel-tiles",
"solar-apparent-time",
"sun-angles",
"tensorflow"
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"build",
"pytest>=6.0",
"pytest-cov",
"jupyter",
"pytest",
"twine"
]
[tool.setuptools.package-data]
FLiESANN = ["*.h5"]
[tool.setuptools.packages.find]
exclude = ["notebooks*", "references*", "examples*"]
[project.urls]
"Homepage" = "https://github.com/JPL-Evapotranspiration-Algorithms/FLiESANN"
[project.scripts]
verify-FLiESANN = "FLiESANN.verify:main"
[tool.pytest.ini_options]
filterwarnings = [
"ignore:numpy.ndarray size changed:RuntimeWarning",
"ignore::DeprecationWarning"
]