-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.cfg
50 lines (43 loc) · 1.21 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
[metadata]
name = rdopkg
summary = RPM packaging automation tool
description_file = README.md
license = Apache Software License
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Environment :: OpenStack
Intended Audience :: Information Technology
Intended Audience :: System Administrators
License :: OSI Approved :: Apache Software License
Operating System :: POSIX :: Linux
author = Jakub Ruzicka
author_email = [email protected]
home_page = https://github.com/softwarefactory-project/rdopkg
keywords =
[global]
setup-hooks = pbr.hooks.setup_hook
[files]
packages =
rdopkg
[entry_points]
console_scripts =
rdopkg = rdopkg.cli:main
[options.extras_require]
lint=
rpmlint
[aliases]
test=pytest
[pycodestyle]
exclude=build,lib,.tox,third,*.egg,docs,packages,.eggs
# H803 skipped on purpose per list discussion.
# E123, E125, W503 skipped as they are invalid PEP-8.
# W605 skipped due to false positives
ignore = E123,E125,H803,W503,W605
show-source = True
[coverage:run]
parallel=true