pungi/setup.py
Jesse Keating 6feda08320 - Get group files out of configured repos and create a mashup
of the comps.  Filter it and make use of it when creating repos.
- Move _doRunCommand into pypungi/__init__.py so that it can be
  easily used by all modules.  Also pass in a logger for correct
  logging
- Quiet down creatrepo calls
2007-08-24 20:45:54 -04:00

16 lines
456 B
Python

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