-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
62 lines (52 loc) · 1.5 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
60
61
62
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "rompy_xbeach"
version = "0.1.0"
description = "Rompy Xbeach Config package."
readme = "README.rst"
authors = [
{name = "Rompy Developers", email = "[email protected]"}
]
maintainers = [
{name = "Rompy Developers", email = "[email protected]"}
]
classifiers = [
]
license = {text = "MIT license"}
dependencies = [
# "rompy",
"rioxarray",
"rompy @ git+https://github.com/rom-py/rompy.git@main",
"pyschism @ git+https://github.com/oceanum/pyschism.git", # Needed until schism is split from rompy
"oceantide",
"typer",
]
[project.optional-dependencies]
dev = [
"coverage",
"mypy",
"pytest",
"ruff"
]
[project.scripts]
rompy_xbeach = "rompy_xbeach.cli:app"
[project.entry-points."rompy.config"]
xbeach = "rompy_xbeach.config:Config"
[project.entry-points."xbeach.source"]
geotiff = "rompy_xbeach.source:SourceGeotiff"
xyz = "rompy_xbeach.source:SourceXYZ"
dataset = "rompy_xbeach.source:SourceCRSDataset"
file = "rompy_xbeach.source:SourceCRSFile"
intake = "rompy_xbeach.source:SourceCRSIntake"
[project.entry-points."xbeach.interpolator"]
regular_grid = "rompy_xbeach.interpolate:RegularGridInterpolator"
[project.urls]
bugs = "https://github.com/rom-py/rompy_xbeach/issues"
changelog = "https://github.com/rom-py/rompy_xbeach/blob/master/changelog.md"
homepage = "https://github.com/rom-py/rompy_xbeach"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.package-data]
"*" = ["*.*"]