2006-11-08 21:34:59 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
import glob
|
|
|
|
|
|
|
|
setup(name='pungi',
|
2011-07-27 16:48:13 +00:00
|
|
|
version='2.9',
|
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'],
|
2010-11-12 17:28:15 +00:00
|
|
|
scripts = ['src/bin/pungi.py'],
|
2007-08-27 18:17:42 +00:00
|
|
|
data_files=[('/usr/share/pungi', glob.glob('share/*'))]
|
2006-11-08 21:34:59 +00:00
|
|
|
)
|
|
|
|
|