pungi/setup.py
jkeating@reducto.boston.redhat.com c951061fe7 Prep for release
2007-02-21 09:34:23 -05:00

16 lines
412 B
Python

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