mirror of
https://git.centos.org/centos/centpkg.git
synced 2025-02-23 16:22:55 +00:00
23 lines
543 B
Python
23 lines
543 B
Python
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name="centpkg",
|
|
version='0.9.1',
|
|
author="Brian Stinson",
|
|
author_email="bstinson@redhat.com",
|
|
description="CentOS Plugin to rpkg for managing RPM package sources",
|
|
license="GPLv2+",
|
|
package_dir={'': 'src'},
|
|
packages=['centpkg'],
|
|
install_requires=[
|
|
'cryptography',
|
|
'GitPython',
|
|
'python-gitlab',
|
|
'pycurl',
|
|
'pyyaml',
|
|
'rpkg>=1.65',
|
|
],
|
|
scripts=['src/bin/centpkg', 'src/bin/centpkg-sig'],
|
|
python_requires='>=3.6',
|
|
)
|