forked from TUW-GEO/rt1_model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (27 loc) · 883 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>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
include = ["rt1_model"]
[project]
name = "rt1_model"
version = "0.4"
description = "Implementation of the RT1 first order radiative transfer model."
requires-python = ">=3.6"
authors = [
{ name="Raphael Quast", email="raphael.quast@geo.tuwien.ac.at" },
]
keywords = ["Radiative Transfer", "Soil Moisture", "Vegetation", "Radar"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = ["numpy", "scipy", "sympy"]
[project.optional-dependencies]
full = ["symengine", "matplotlib"]
symengine = ["symengine"]
[project.urls]
Documentation = "https://rt1-model.readthedocs.io"
Repository = "https://github.com/TUW-GEO/rt1"