~james-w/lpdistutils/trunk

1
2
3
4
5
6
7
8
9
10
11
12
from setuptools import setup, find_packages

setup(
    name="lpdistutils",
    version="0.1",
    packages=find_packages(),
    install_requires=['launchpadlib'],
    tests_require=['mocker', 'testtools'],
    description="Distutils commands for working with Launchpad",
    author="James Westby",
    author_email="james.westby@linaro.org",
    )