pungi/setup.py
Jesse Keating c88e50ee5e Fix creation of source isos.
Add source repo to kickstart file
End %packages section with %end per new pykickstart api
2007-08-30 16:56:08 -04:00

16 lines
417 B
Python

from distutils.core import setup
import glob
setup(name='pungi',
version='1.0.2',
description='Distribution compose tool',
author='Jesse Keating',
author_email='jkeating@redhat.com',
url='http://hosted.fedoraproject.org/projects/pungi',
license='GPL',
packages = ['pypungi'],
scripts = ['pungi'],
data_files=[('/usr/share/pungi', glob.glob('share/*'))]
)