-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (70 loc) · 1.93 KB
/
pyproject.toml
File metadata and controls
82 lines (70 loc) · 1.93 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
80
81
82
[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling",
"versioningit>=3.1.2",
]
[project]
authors = [
{ name = "Christophe Furmaniak", email = "christophe.furmaniak@gmail.com" },
]
classifiers = [
"Topic :: Utilities",
# Specify the Python versions you support here.
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"typer>=0.24.1",
"yamkix>=0.14.0",
]
description = "A CLI to split multidoc yaml formatted kubernetes descriptors to a set of single resource files"
dynamic = [
"version",
]
license = "Apache-2.0"
name = "kubesplit"
readme = "README.md"
requires-python = ">=3.10"
[project.urls]
Repository = "https://github.com/looztra/kubesplit"
[project.scripts]
kubesplit = "kubesplit._cli:app"
[dependency-groups]
dev = [
"tox>=4.2",
"faker>=36.0",
"poethepoet>=0.29.0",
"pylint>=3.3.0",
"pyright>=1.1.384",
"pytest-cov>=6.0",
"pytest-mock>=3.14.0",
"pytest-unordered>=0.6.1",
"pytest>=8.3.3",
"ruff>=0.9.6",
"tox-uv>=1.23.2",
"taplo>=0.9.3",
]
[tool.hatch.version]
source = "versioningit"
[tool.hatch.build.targets.wheel]
include = [
"src/kubesplit",
]
[tool.hatch.build.targets.wheel.sources]
"src/kubesplit" = "kubesplit"
[tool.versioningit]
default-version = "0.0.0.dev0+0"
[tool.versioningit.vcs]
default-tag = "v0.0.0"
[tool.versioningit.format]
# Format used when there have been commits since the most recent tag:
distance = "{next_version}.dev{distance}"
# Example formatted version: 1.2.3.post42+ge174a1f
# Format used when there are uncommitted changes:
dirty = "{base_version}+dirty{build_date:%Y%m%d}"
# Example formatted version: 1.2.3+d20230922
# Format used when there are both commits and uncommitted changes:
distance-dirty = "{next_version}.dev{distance}+{vcs}{rev}.d{build_date:%Y%m%d}"