mirror of
https://git.centos.org/centos/centpkg.git
synced 2025-02-23 16:22:55 +00:00
14 lines
385 B
Python
14 lines
385 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="centpkg",
|
|
version='0.4.6',
|
|
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'],
|
|
scripts=['src/bin/centpkg'],
|
|
data_files=[('/etc/rpkg',['src/centpkg.conf']),]
|
|
)
|