2014-06-13 23:43:32 -05:00
|
|
|
from setuptools import setup
|
2016-11-28 14:34:11 -06:00
|
|
|
|
2021-02-22 15:08:50 +01:00
|
|
|
|
2014-06-13 23:43:32 -05:00
|
|
|
setup(
|
2016-11-28 14:34:33 -06:00
|
|
|
name="centpkg",
|
2024-02-21 09:07:10 -08:00
|
|
|
version='0.8.2',
|
2016-11-28 14:34:33 -06:00
|
|
|
author="Brian Stinson",
|
2021-02-09 23:01:43 -06:00
|
|
|
author_email="bstinson@redhat.com",
|
2016-11-28 14:34:33 -06:00
|
|
|
description="CentOS Plugin to rpkg for managing RPM package sources",
|
|
|
|
license="GPLv2+",
|
|
|
|
package_dir={'': 'src'},
|
|
|
|
packages=['centpkg'],
|
2023-09-01 23:24:15 -05:00
|
|
|
install_requires=[
|
|
|
|
'cryptography',
|
|
|
|
'GitPython',
|
2023-09-01 23:25:48 -05:00
|
|
|
'python-gitlab',
|
2023-09-01 23:24:15 -05:00
|
|
|
'pycurl',
|
2023-09-01 23:29:44 -05:00
|
|
|
'rpkg>=1.65',
|
2023-09-01 23:24:15 -05:00
|
|
|
],
|
2021-02-25 13:48:09 +01:00
|
|
|
scripts=['src/bin/centpkg', 'src/bin/centpkg-sig'],
|
2024-02-19 14:52:47 -08:00
|
|
|
python_requires='>=3.6',
|
2014-06-13 23:43:32 -05:00
|
|
|
)
|