-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.12 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "radproc"
description = "radar data processing tools"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Jussi Tiira", email = "jussi.tiira@fmi.fi"},
]
keywords = ["meteorology", "weather radar", "precipitation"]
requires-python = ">=3.10"
dependencies = [
"scipy",
"pandas",
"scikit-learn",
"h5py",
"click",
"cartopy",
]
dynamic = ["version"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[project.urls]
source = "https://github.com/juhi24/radproc"
[project.optional-dependencies]
ml = [
"mba @ git+https://github.com/ddemidov/mba.git",
]
arm = [
"arm_pyart>=1.19.3",
]
mch = [
"pyart_mch",
#"pyart_mch @ git+https://github.com/MeteoSwiss/pyart.git",
]
dynamics = [
"pysteps"
]
[project.scripts]
sulatiirain = "radproc.cli.sulatiirain:main"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "src/radproc/_version.py"
[tool.hatch.metadata]
allow-direct-references = true