-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (69 loc) · 1.61 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
[tool.poetry]
name = "python-SysInformer"
version = "1.10.1"
description = "A simple system information tool for Linux"
authors = ["Timothy Bryant <[email protected]>"]
readme = "README.md"
packages = [{include = "sysinformer", from = "."}]
# classifiers = ["Private :: Do not Upload"]
[tool.poetry.dependencies]
python = ">=3.9"
distro = "^1.8.0"
netifaces = "^0.11.0"
psutil = "^5.9.5"
tabulate = "^0.9.0"
ping3 = "^4.0.4"
pyyaml = "^6.0.1"
click = "^8.1.7"
[tool.poetry.group.dev.dependencies]
autopep8 = "^2.0.2"
pytest = "^7.2.2"
black = "^23.3.0"
pre-commit = "^3.3.3"
pytest-mock = "^3.11.1"
coverage = "^7.2.7"
isort = "^5.12.0"
sourcery = "^1.11.0"
[tool.poetry.group.tooling.dependencies]
pip-tools = "^7.1.0"
doit = "^0.36.0"
python-semantic-release = "^8.0.7"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
pythonpath = [
".", "sysinformer"
]
[tool.poetry.scripts]
psi = "sysinformer.main:cli"
[tool.semantic_release.commit_parser_options]
allowed_tags = [
"build",
"chore",
"refactor",
"fix",
"perf",
"style",
"docs",
"ci",
"test",
"feat",
":boom:",
"BREAKING_CHANGE",
]
major_tags = [":boom:", "BREAKING_CHANGE"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf", "style", "docs", "ci", "test", "refactor", "chore", "build"]
[tool.semantic_release]
version_toml = [
"pyproject.toml:tool.poetry.version",
]
branch = "main"
changelog_file = "CHANGELOG.md"
build_command = "poetry build"
dist_path = "dist/"
upload_to_vcs_release = true
upload_to_pypi = false
remove_dist = false
patch_without_tag = true