pungi/setup.py
jkeating@dhcp83-49.boston.redhat.com 3c6d242bda bump the version, change the website
2006-12-11 23:58:56 -05:00

16 lines
412 B
Python

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