-
Notifications
You must be signed in to change notification settings - Fork 39
/
pyproject.toml
59 lines (55 loc) · 1.87 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
[build-system]
requires = [
"setuptools >= 65.3.0",
]
build-backend = "setuptools.build_meta"
[project]
dynamic = ["version"]
name = "salt-lint"
description = "A command-line utility that checks for best practices in SaltStack."
readme = "README.md"
requires-python = ">=3.7"
authors = [
{name = "Roald Nefs", email = "[email protected]"},
]
maintainers = [
{name = "Roald Nefs", email = "[email protected]"},
{name = "Jeffrey Bouter", email = "[email protected]"},
]
license = {text = "MIT License"}
keywords = ['salt', 'saltstack', 'lint', 'linter', 'checker']
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Bug Tracking",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
"Topic :: Utilities",
]
dependencies = [
"pyyaml",
"pathspec>=0.6.0",
]
[project.scripts]
salt-lint = "saltlint.cli:run"
[project.urls]
homepage = "https://github.com/warpnet/salt-lint"
documentation = "https://salt-lint.readthedocs.io/en/latest/"
repository = "https://github.com/warpnet/salt-lint"
issues = "https://github.com/warpnet/salt-lint/issues"
changelog = "https://raw.githubusercontent.com/warpnet/salt-lint/main/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "saltlint.__version__"}