-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
59 lines (47 loc) · 1.58 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
[project]
name = "smrt"
dynamic = ["version"]
description = "The Snow Microwave Radiative Transfer (SMRT) model is a highly modular model to compute the thermal emission and backscattering coefficient of snowpacks and other cryospheric bodies in the microwave domain."
authors = [
{name = "Ghislain Picard", email = "[email protected]"},
{name = "Melody Sandells", email = "[email protected]"},
{name = "Henning Löwe", email = "[email protected]"},
]
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dependencies = [
"numpy >= 1.13, < 2",
"pandas>=0.20.3",
"scipy>=1.0.0",
"xarray>=0.10.3",
"numba>=0.40",
"joblib>=1.0.0",
]
[project.optional-dependencies]
progressbar = ["tqdm"]
pyrtlib = ["scikit-learn", "bs4", "netCDF4", "requests", "cdsapi", "cfgrib", "pyrtlib"]
[project.urls]
Homepage = "https://http://smrt-model.science/l"
Issues = "https://github.com/smrt/smrt-model/issues"
Documentation = "http://smrt.readthedocs.io/"
Repository = "https://github.com/smrt-model/smrt.git"
[build-system]
requires = ["setuptools >= 48",
"setuptools_scm[toml] >= 6.2",
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ['smrt']
[tool.ruff]
line-length = 120
target-version = "py310"
ignore = ["E741"]
[tool.ruff.pydocstyle]
convention = "numpy" # TODO: changed to google
[tool.setuptools_scm]