-
Notifications
You must be signed in to change notification settings - Fork 66
/
setup.cfg
63 lines (57 loc) · 1.14 KB
/
setup.cfg
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
[metadata]
name = ploigos-step-runner
author = Red Hat Services
description = Ploigos Step Runner (PSR) implemented as a Python library.
url = https://github.com/ploigos/ploigos-step-runner
keywords =
ploigos
psr
Step Runner
Trusted Software Supply Chain
Red Hat
Red Hat Services
classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.8
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Operating System :: OS Independent
long_description = file: README.md
long_description_content_type = text/markdown
license_files =
LICENSE
COMMITMENT
[pylint]
ignore = version.py
disable = R0801,R0903
output-format = colorized
[tool:pytest]
norecursedirs=tests/helpers
[options]
python_requires = >= 3.9
package_dir=
=src
packages = find:
zip_safe: False
install_requires =
PyYAML
gitpython
sh ==1.14.2
jinja2
prometheus_client
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
psr = ploigos_step_runner.__main__:main
[options.extras_require]
tests =
wheel
pylint
flake8
bandit
pytest
pytest-cov
testfixtures
mock
codecov
tox