forked from rpm-software-management/rpmlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·74 lines (66 loc) · 2.19 KB
/
setup.py
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
from setuptools import setup
setup(
name='rpmlint',
description='Check for common errors in RPM packages',
long_description=('Rpmlint is a tool to check common errors in RPM packages.'
'Binary and source packages can be checked'),
url='https://github.com/rpm-software-management/rpmlint',
download_url='https://github.com/rpm-software-management/rpmlint',
version='2.4.0',
author='Frédéric Lepied',
author_email='[email protected]',
maintainer='RPMLint maintainers',
maintainer_email='[email protected]',
license='License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
classifiers=[
# complete classifier list:
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Utilities',
'Topic :: Software Development :: Quality Assurance',
'Topic :: System :: Archiving :: Packaging',
],
platforms=['Linux'],
keywords=['RPM', '.spec', 'validator'],
install_requires=[
'pybeam',
'pyxdg',
'rpm',
'tomli;python_version<"3.11"',
'tomli-w',
'zstandard',
'importlib-metadata;python_version<"3.8"',
'pyenchant',
'python-magic'
],
tests_require=[
'pytest',
'pytest-cov',
'pytest-flake8',
'pytest-xdist',
],
packages=[
'rpmlint',
'rpmlint.checks',
],
package_data={
'rpmlint': ['configdefaults.toml'],
'rpmlint.descriptions': ['*.toml'],
},
include_package_data=True,
entry_points={
'console_scripts': [
'rpmdiff = rpmlint.cli:diff',
'rpmlint = rpmlint.cli:lint',
],
},
)