pungi/setup.py
Jesse Keating 8df58b56cb Bump version to 1.2.0
Allow our default flavor of '' to be used.
2007-12-03 13:49:11 -05:00

16 lines
417 B
Python

from distutils.core import setup
import glob
setup(name='pungi',
version='1.2.0',
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/*'))]
)