-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (85 loc) · 2.48 KB
/
pyproject.toml
File metadata and controls
97 lines (85 loc) · 2.48 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# SPDX-License-Identifier: Apache-2.0
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "chiltepin"
version = "0.1.0"
dependencies = [
"globus-compute-sdk>=4.5.0,<4.7.0",
"globus-compute-endpoint>=4.5.0,<4.7.0",
"parsl>=2026.1.5",
]
requires-python = ">=3.10.0"
authors = [
{name = "Christopher Harrop", email = "Christopher.W.Harrop@noaa.gov"}
]
maintainers = [
{name = "Christopher Harrop", email = "Christopher.W.Harrop@noaa.gov"}
]
description = "Federated NWP Workflow Tools"
readme = "README.md"
license = {text = "Apache-2.0"}
keywords = ["federated", "workflow", "parsl", "globus-compute", "hpc", "scientific-computing"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
"Topic :: System :: Distributed Computing",
]
[project.urls]
Homepage = "https://github.com/NOAA-GSL/ExascaleWorkflowSandbox"
Documentation = "https://exascaleworkflowsandbox.readthedocs.io"
Repository = "https://github.com/NOAA-GSL/ExascaleWorkflowSandbox"
"Source Code" = "https://github.com/NOAA-GSL/ExascaleWorkflowSandbox"
Issues = "https://github.com/NOAA-GSL/ExascaleWorkflowSandbox/issues"
"Bug Tracker" = "https://github.com/NOAA-GSL/ExascaleWorkflowSandbox/issues"
Changelog = "https://github.com/NOAA-GSL/ExascaleWorkflowSandbox/releases"
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"ruff",
]
docs = [
"sphinx==7.1.2",
"sphinx-rtd-theme==1.3.0rc1",
]
[project.scripts]
chiltepin = "chiltepin.cli:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.coverage.run]
source = ["src/chiltepin"]
omit = [
"*/tests/*",
"*/__pycache__/*",
"*/venv/*",
"*/.chiltepin/*",
]
[tool.coverage.report]
precision = 2
show_missing = true
skip_covered = false
# Fail if coverage is below this threshold
fail_under = 100
[tool.coverage.html]
directory = "htmlcov"
[tool.ruff]
target-version = "py310"
lint.extend-select = ["I"]