summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 745126bcc2690de33889cec32f6cb7251e79a158 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from distutils.core import setup
from glob import glob
import bugzilla.base

setup(name='python-bugzilla',
      version=str(bugzilla.base.version),
      description='Bugzilla XMLRPC access module',
      author='Will Woods',
      author_email='wwoods@redhat.com',
      url='http://wwoods.fedorapeople.org/python-bugzilla/',
      packages = ['bugzilla'],
      scripts=['bin/bugzilla'],
      data_files=[('share/man/man1', ['bugzilla.1'])],
)