-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (72 loc) · 1.91 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (72 loc) · 1.91 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
[build-system]
requires = ["setuptools >= 61.0", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "tomato"
authors = [
{name = "Peter Kraus"},
{name = "Graham Kimbell"},
]
maintainers = [
{name = "Peter Kraus", email = "peter.kraus@tu-berlin.de"},
]
description = "au-tomation without pain"
readme = "README.md"
license = "GPL-3.0-or-later"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
requires-python = ">= 3.10"
dependencies = [
"appdirs >= 1.4.0",
"toml >= 0.10",
"pyyaml >= 6.0",
"psutil >= 5.9",
"dgbowl_schemas >= 125",
"pyzmq >= 25.1",
"h5netcdf[h5py] >= 1.5.0",
"xarray >= 2024.10.0",
"pydantic >= 2.0",
"pint >= 0.24.1",
]
[project.optional-dependencies]
testing = [
"pytest",
"tomato-example-counter >= 2.0.0",
"tomato-psutil >= 2.1.0",
]
docs = [
"sphinx ~= 7.2",
"sphinx-rtd-theme ~= 1.3.0",
"autodoc-pydantic ~= 2.1",
"sphinxcontrib-mermaid ~= 0.9.2",
]
rocrate = [
"rocrate >= 0.14"
]
[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"
passata = "tomato:run_passata"
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}.post{ccount}"
dirty_template = "{tag}.post{ccount}+dirty"
[tool.ruff]
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"