-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.33 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
[build-system]
requires = ["setuptools >= 61.0", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "tomato-psutil"
authors = [
{name = "Peter Kraus", email = "[email protected]"},
]
maintainers = [
{name = "Peter Kraus", email = "[email protected]"},
]
description = "tomato driver interface to the psutil library"
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",
"Operating System :: OS Independent",
]
requires-python = ">= 3.10"
dependencies = [
"psutil >= 5.9",
"tomato >= 1.0rc1",
]
[project.optional-dependencies]
testing = ["pytest"]
docs = [
"sphinx ~= 7.2",
"sphinx-rtd-theme ~= 1.3.0",
"autodoc-pydantic ~= 1.9.0",
"sphinxcontrib-mermaid ~= 0.9.2",
]
[project.urls]
Documentation = "https://dgbowl.github.io/tomato-psutil/master"
Issues = "https://github.com/dgbowl/tomato-psutil/issues"
Repository = "https://github.com/dgbowl/tomato-psutil/"
[project.scripts]
[tool.setuptools-git-versioning]
enabled = true
dev_template = "{tag}.dev{ccount}"
dirty_template = "{tag}.dev{ccount}"
[tool.ruff]