Shuffle things around so that dist-utils can be used.

This commit is contained in:
jkeating@harpoon.lab.boston.redhat.com 2006-11-08 16:34:59 -05:00 committed by Jesse Keating
parent cbb78e7318
commit 023ad1b0fb
12 changed files with 30 additions and 7 deletions

15
setup.py Normal file
View file

@ -0,0 +1,15 @@
from distutils.core import setup
import glob
setup(name='pungi',
version='0.1.0',
description='Distribution compose tool',
author='Jesse Keating',
author_email='jkeating@redhat.com',
url='http://linux.duke.edu/projects/pungi',
license='GPL',
packages = ['pypungi'],
scripts = ['pungi'],
data_files=[('/etc/pungi', glob.glob('config/*'))]
)