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

setup(name='bugzilla',
      version=str(bugzilla.version),
      description='Bugzilla XMLRPC access module',
      author='Will Woods',
      author_email='wwoods@redhat.com',
      url='http://localhost/',
      py_modules=['bugzilla'],
)