~ubuntu-branches/ubuntu/wily/python-debianbts/wily

1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

from distutils.core import setup

setup(name="python-debianbts",
        version="1.10",
        description="Python interface to Debians Bug Tracking System",
        author="Bastian Venthur",
        author_email="venthur@debian.org",
        py_modules=["debianbts"],
        package_dir={"": "src"},
        )