-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
46 lines (42 loc) · 1.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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "chiltepin"
version = "0.0.1"
dependencies = [
"globus-compute-sdk @ git+https://github.com/globus/globus-compute@main#subdirectory=compute_sdk",
"globus-compute-endpoint @ git+https://github.com/globus/globus-compute@main#subdirectory=compute_endpoint",
"parsl[monitoring]>=2025.01.20",
"uwtools @ git+https://github.com/ufs-community/uwtools@v2.5.1#subdirectory=src",
]
requires-python = ">=3.9.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 = {file = "LICENSE"}
keywords = ["federated", "workflow"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-flake8",
"pytest-black",
"pytest-isort",
]
[project.scripts]
chiltepin = "chiltepin.cli:main"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
"--ignore=apps",
"--ignore=tests/jedi-bundle-test",
]