-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (97 loc) · 2.79 KB
/
Copy pathpyproject.toml
File metadata and controls
108 lines (97 loc) · 2.79 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "salt-config-cli"
version = "0.5.0"
description = "Safe Git-to-RaaS workflows and interactive Salt configuration operations"
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.10"
authors = [{name = "Salt Config CLI contributors"}]
maintainers = [{name = "Salt Config CLI contributors"}]
keywords = ["salt", "saltstack", "raas", "tanzu-salt", "aria-automation-config", "configuration-management", "cli"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: System :: Systems Administration",
]
dependencies = [
"click>=8.1,<9",
"httpx>=0.27,<1",
"keyring>=24,<27",
"pydantic>=2.7,<3",
"pydantic-settings>=2.2,<3",
"python-dotenv>=1,<2",
"prompt-toolkit>=3.0,<4",
"PyYAML>=6,<7",
"rich>=13.7,<15",
"tabulate>=0.9,<1",
]
[project.optional-dependencies]
dev = [
"build>=1.2,<2",
"pytest>=8,<9",
"pytest-cov>=5,<7",
"ruff>=0.9,<1",
]
[project.scripts]
scc = "salt_config_cli.cli:main"
salt-config = "salt_config_cli.cli:main"
raas = "salt_config_cli.cli:main"
[project.urls]
Homepage = "https://github.com/salt-config-cli/salt-config-cli"
Documentation = "https://github.com/salt-config-cli/salt-config-cli#readme"
Repository = "https://github.com/salt-config-cli/salt-config-cli"
Issues = "https://github.com/salt-config-cli/salt-config-cli/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["salt_config_cli*"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
addopts = "-ra --strict-markers"
markers = [
"integration: tests using a mock or live RaaS endpoint",
]
[tool.coverage.run]
branch = true
source = [
"salt_config_cli.core.config",
"salt_config_cli.core.models",
"salt_config_cli.core.plan",
"salt_config_cli.core.state",
"salt_config_cli.core.repositories",
"salt_config_cli.services.git_repository",
"salt_config_cli.core.kb_catalog",
]
[tool.coverage.report]
show_missing = true
skip_covered = true
fail_under = 65
[tool.ruff]
line-length = 110
target-version = "py310"
exclude = ["salt_modules"]
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
ignore = ["E501"]
[tool.setuptools.package-data]
salt_config_cli = [
"data/kb_demo/**/*.yaml",
"data/kb_demo/**/*.yml",
"data/kb_demo/**/*.sls",
"data/kb_demo/**/*.jinja",
"data/kb_demo/**/*.md",
"data/kb_demo/**/*.json",
]