-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
85 lines (75 loc) · 2.83 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
74
75
76
77
78
79
80
81
82
83
84
85
# pyproject.toml file for zhmc-os-forwarder
# Documentation:
# pyproject.toml: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
# setuptools items: https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[build-system]
requires = [
# Keep in sync with base-requirements.txt and the base dependencies in
# minimum-constraints-install.txt
"setuptools>=70.0.0",
"setuptools-scm[toml]>=8.1.0",
"wheel>=0.41.3"
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
platforms = ["any"]
script-files = []
zip-safe = true
[tool.setuptools.packages.find]
# setuptools needs all sub-packages to be specified as well to avoid the
# ambiguity warning. That can be done by specifyng 'packages' with a full list
# of packages including sub-packages, or by specifying 'packages.find' with
# wildcards. The strings in 'packages.find' are matched using glob pattern
# matching against the package path.
include = [
"zhmc_os_forwarder",
"zhmc_os_forwarder.*",
]
[tool.setuptools.package-data]
zhmc_os_forwarder = [
"schemas/*.yaml",
]
[project.scripts]
zhmc_os_forwarder = "zhmc_os_forwarder.zhmc_os_forwarder:main"
[project]
name = "zhmc_os_forwarder"
description = "IBM Z HMC OS Message Forwarder"
authors = [
{name = "Andreas Maier", email = "[email protected]"}
]
maintainers = [
{name = "Andreas Maier", email = "[email protected]"},
{name = "Kathir Velusamy", email = "[email protected]"}
]
readme = "README.md"
license = {text = "Apache License, Version 2.0"}
keywords = ["hmc", "prometheus", "monitoring"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
'Intended Audience :: System Administrators',
"Topic :: System :: Systems Administration",
"Environment :: Console",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.8"
dynamic = ["version", "dependencies"]
[project.urls]
Homepage = "https://github.com/zhmcclient/zhmc-os-forwarder"
"Bug Tracker" = "https://github.com/zhmcclient/zhmc-os-forwarder/issues"
Documentation = "https://zhmc-os-forwarder.readthedocs.io/en/latest/"
"Source Code" = "https://github.com/zhmcclient/zhmc-os-forwarder"
Changelog = "https://zhmc-os-forwarder.readthedocs.io/en/latest/changes.html"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]
# Get the version from the Git tag, and write a version file:
version_file = "zhmc_os_forwarder/_version_scm.py"