-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
73 lines (66 loc) · 1.86 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
71
72
73
[build-system]
requires = ["setuptools >= 61.0", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "tomato"
authors = [
{name = "Peter Kraus", email = "[email protected]"},
{name = "Graham Kimbell"},
]
maintainers = [
{name = "Peter Kraus", email = "[email protected]"},
]
description = "au-tomation without pain"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
]
requires-python = ">= 3.10"
dependencies = [
"appdirs >= 1.4.0",
"toml >= 0.10",
"pyyaml >= 6.0",
"psutil >= 5.9",
"dgbowl_schemas >= 119",
"pyzmq >= 25.1",
"h5netcdf >= 1.3",
"xarray >= 2024.10.0",
"pydantic >= 2.0",
]
[project.optional-dependencies]
testing = [
"pytest",
"tomato-example-counter >= 1.0.0",
"tomato-psutil >= 1.0.0",
]
docs = [
"sphinx ~= 7.2",
"sphinx-rtd-theme ~= 1.3.0",
"autodoc-pydantic ~= 2.1",
"sphinxcontrib-mermaid ~= 0.9.2",
]
[project.urls]
Documentation = "https://dgbowl.github.io/tomato/main"
Issues = "https://github.com/dgbowl/tomato/issues"
Repository = "https://github.com/dgbowl/tomato/"
[project.scripts]
tomato = "tomato:run_tomato"
ketchup = "tomato:run_ketchup"
tomato-job = "tomato.daemon.job:tomato_job"
tomato-driver = "tomato.daemon.driver:tomato_driver"
tomato-daemon = "tomato.daemon:tomato_daemon"
[tool.setuptools-git-versioning]
enabled = true
dev_template = "{tag}.dev{ccount}"
dirty_template = "{tag}.dev{ccount}"
[tool.ruff]
[tool.pytest.ini_options]
# log_cli = true
# log_cli_level = "DEBUG"