pungi/setup.py

16 lines
417 B
Python
Raw Normal View History

from distutils.core import setup
import glob
setup(name='pungi',
2007-12-10 23:29:15 +00:00
version='1.2.4',
description='Distribution compose tool',
author='Jesse Keating',
author_email='jkeating@redhat.com',
2006-12-12 04:58:56 +00:00
url='http://hosted.fedoraproject.org/projects/pungi',
license='GPL',
packages = ['pypungi'],
scripts = ['pungi'],
data_files=[('/usr/share/pungi', glob.glob('share/*'))]
)