forked from canonical/hotsos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
28 lines (21 loc) · 855 Bytes
/
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
[build-system]
requires = ["setuptools", "wheel", "setuptools-git-versioning"]
build-backend = "setuptools.build_meta"
[tool.setuptools-git-versioning]
enabled = true
# Used if no untracked files and current commit is tagged.
template = "{tag}"
# Used if there are no untracked files, and current commit is not tagged.
dev_template = "{tag}.post{ccount}"
# Used if untracked files exist or uncommitted changes have been made.
dirty_template = "{tag}.post{ccount}+dirty"
[project]
name = "hotsos"
description = "Software analysis toolkit. Define checks in high-level language and leverage library to perform analysis of common Cloud applications."
readme = "README.md"
requires-python = ">=3.8"
dynamic = ["version", "dependencies"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.scripts]
hotsos = "hotsos.cli:main"