~ubuntu-dev/wadllib/ubuntu

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
# Copyright 2008 Canonical Ltd.  All rights reserved.

"""Setup for the wadllib library."""

import ez_setup
ez_setup.use_setuptools()

from setuptools import setup, find_packages

from wadllib import __version__

setup(
    name        = 'wadllib',
    version     = __version__,
    description = """\
wadllib is a client-side package for inspecting and navigating between
HTTP resources described using the Web Application Description
Language.
""",
    author      = 'The Launchpad developers',
    download_url= 'https://launchpad.net/wadllib/+download',
    packages    = find_packages(),
    include_package_data = True,
    zip_safe    = True,
    install_requires = [
        'simplejson',
        ],
    #setup_requires = [
    #    'setuptools_bzr',
    #    ]
    #,
    license='LGPL 3 or later',
    extras_require = {
        'nose': ['nose'],
        },
    test_suite  = 'nose.collector',
    )