-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
70 lines (58 loc) · 2 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
63
64
65
66
67
68
69
70
# Copyright 2016 – present by Doug Latornell, 43ravens
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "NEMO_Nowcast"
dynamic = [ "version" ]
description = "Automation framework for NEMO and other ocean models"
readme = "README.rst"
requires-python = ">=3.12"
license-files = { paths = ["LICENSE"] }
authors = [
{name = "Doug Latornell", email = "[email protected]"}
]
keywords = ["ocean model", "nowcast", "NEMO"]
dependencies = [
# see envs/environment-dev.yaml for conda environment dev installation,
# see envs/requirements.txt for package versions used during recent development
# see envs/environment-rtd.yaml for conda environment used for readthedocs build
"arrow",
"attrs",
"PyYAML",
"pyzmq",
"requests",
"schedule",
"sentry-sdk",
"supervisor",
]
[project.urls]
"Documentation" = "https://nemo-nowcast.readthedocs.io/en/latest/NEMO_Nowcast/"
"Changelog" = "https://github.com/43ravens/NEMO_Nowcast/releases"
"Issue Tracker" = "https://github.com/43ravens/NEMO_Nowcast/issues"
"Source Code" = "https://github.com/43ravens/NEMO_Nowcast"
[project.optional-dependencies]
tests = ["coverage", "pytest"]
docs = ["sphinx"]
[tool.coverage.run]
branch = true
source = ["nemo_nowcast", "tests"]
[tool.coverage.report]
show_missing = true
[tool.hatch.build.targets.wheel]
include = ["nemo_nowcast"]
[tool.hatch.version]
path = "nemo_nowcast/__about__.py"