2006-11-08 21:34:59 +00:00
|
|
|
from distutils.core import setup
|
|
|
|
import glob
|
|
|
|
|
|
|
|
setup(name='pungi',
|
2014-09-11 16:09:13 +00:00
|
|
|
version='3.12', # make sure src/bin/pungi.py is updated to match
|
2006-11-08 21:34:59 +00:00
|
|
|
description='Distribution compose tool',
|
2012-04-16 19:59:45 +00:00
|
|
|
author='Dennis Gilmore',
|
|
|
|
author_email='dgilmore@fedoraproject.org',
|
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'],
|
2012-11-26 07:32:01 +00:00
|
|
|
data_files=[
|
|
|
|
('/usr/share/pungi', glob.glob('share/*.xsl')),
|
|
|
|
('/usr/share/pungi', glob.glob('share/*.ks')),
|
|
|
|
('/usr/share/pungi/multilib', glob.glob('share/multilib/*')),
|
|
|
|
]
|
|
|
|
)
|
2006-11-08 21:34:59 +00:00
|
|
|
|