2006-11-08 21:34:59 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
import glob
|
|
|
|
|
|
|
|
setup(name='pungi',
|
2009-09-15 00:05:42 +00:00
|
|
|
version='2.0.18',
|
2006-11-08 21:34:59 +00:00
|
|
|
description='Distribution compose tool',
|
|
|
|
author='Jesse Keating',
|
|
|
|
author_email='jkeating@redhat.com',
|
2007-12-15 04:14:21 +00:00
|
|
|
url='http://fedorahosted.org/pungi',
|
|
|
|
license='GPLv2',
|
|
|
|
package_dir = {'': 'src'},
|
2006-11-08 21:34:59 +00:00
|
|
|
packages = ['pypungi'],
|
2008-06-23 14:54:45 +00:00
|
|
|
scripts = ['src/bin/pungi.py', 'src/bin/pkgorder'],
|
2007-08-27 18:17:42 +00:00
|
|
|
data_files=[('/usr/share/pungi', glob.glob('share/*'))]
|
2006-11-08 21:34:59 +00:00
|
|
|
)
|
|
|
|
|