2014-06-13 23:43:32 -05:00
|
|
|
from setuptools import setup
|
2016-11-28 14:34:11 -06:00
|
|
|
|
|
|
|
__version__ = None
|
|
|
|
execfile('src/centpkg/version.py')
|
|
|
|
|
2014-06-13 23:43:32 -05:00
|
|
|
setup(
|
2016-11-28 14:34:33 -06:00
|
|
|
name="centpkg",
|
|
|
|
version=__version__,
|
|
|
|
author="Brian Stinson",
|
2018-11-14 22:28:34 -06:00
|
|
|
author_email="brian@bstinson.com",
|
2016-11-28 14:34:33 -06:00
|
|
|
description="CentOS Plugin to rpkg for managing RPM package sources",
|
|
|
|
url="http://bitbucket.org/bstinsonmhk/centpkg.git",
|
|
|
|
license="GPLv2+",
|
|
|
|
package_dir={'': 'src'},
|
|
|
|
packages=['centpkg'],
|
|
|
|
scripts=['src/bin/centpkg'],
|
|
|
|
data_files=[('/etc/rpkg',['src/centpkg.conf']),]
|
2014-06-13 23:43:32 -05:00
|
|
|
)
|