mirror of
https://git.centos.org/centos/centpkg.git
synced 2025-02-23 16:22:55 +00:00
15 lines
460 B
Python
15 lines
460 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name = "centpkg",
|
|
version = "0.4.1",
|
|
author = "Brian Stinson",
|
|
author_email = "bstinson@ksu.edu",
|
|
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']),]
|
|
)
|