-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 1006 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 1006 Bytes
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
[project]
name = "yamlex"
version = "1.3.0"
description = "Dynatrace Extensions: assemble extension.yaml from individual parts"
keywords = ["dynatrace", "cli", "extensions"]
readme = "README.md"
authors = [
{ name = "Vagiz Duseev", email = "vagiz.duseev@dynatrace.com" }
]
maintainers = [
{ name = "Vagiz Duseev", email = "vagiz.duseev@dynatrace.com" }
]
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.9"
dependencies = [
"deepdiff>=8.4",
"ruamel-yaml>=0.18",
"typer>=0.9",
]
[project.urls]
Documentation = "https://github.com/dynatrace-extensions/dt-extensions-yamlex"
Repository = "https://github.com/dynatrace-extensions/dt-extensions-yamlex"
Issues = "https://github.com/dynatrace-extensions/dt-extensions-yamlex/issues"
[project.scripts]
yamlex = "yamlex.cli.app:run"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"bump2version>=1.0.1",
"ruff>=0.11.10",
]
[tool.ruff]
line-length = 80