-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
44 lines (40 loc) · 1.03 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mod16"
authors = [
{name = "K. Arthur Endsley", email = "[email protected]"}
]
description = "Python tools for MOD16 algorithm"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering"
]
dependencies = [
"mod17>=0.1.1",
"h5py>=3.4.0",
"netCDF4>=1.5.7",
"numpy>=1.21.0",
"scipy>=1.7.0",
"xarray>=0.19.0",
"suntransit>=0.1.0",
"tqdm>=4.60.0",
"fire>=0.4.0",
"pymc>=5.0.0",
"PyYAML>=6.0.0"
]
[tool.setuptools.dynamic]
version = {attr = "mod16.__version__"}
[tool.setuptools.package-data]
"*" = ["data/*.csv"]
[project.optional-dependencies]
docs = ["pdoc3>=0.9.2"]
sensitivity = ["SALib>=1.4.5"]
calibration = ["pymc >=5.10.0, <=5.12.0", "pytensor>=2.18.0", "arviz>=0.13.0"]