pungi/setup.py

17 lines
467 B
Python
Raw Normal View History

from distutils.core import setup
import glob
setup(name='pungi',
version='2.1.4',
description='Distribution compose tool',
author='Jesse Keating',
author_email='jkeating@redhat.com',
2007-12-15 04:14:21 +00:00
url='http://fedorahosted.org/pungi',
license='GPLv2',
package_dir = {'': 'src'},
packages = ['pypungi'],
scripts = ['src/bin/pungi.py', 'src/bin/pkgorder'],
data_files=[('/usr/share/pungi', glob.glob('share/*'))]
)