~thekorn/wadllib/fix-340935-use-actual-type

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Leonard Richardson
  • Date: 2008-08-01 15:07:59 UTC
  • Revision ID: leonard.richardson@canonical.com-20080801150759-7ciqu4cw992fb69n
Initial import.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# Copyright 2008 Canonical Ltd.  All rights reserved.
 
3
 
 
4
"""Setup for the wadllib library."""
 
5
 
 
6
import ez_setup
 
7
ez_setup.use_setuptools()
 
8
 
 
9
from setuptools import setup, find_packages
 
10
 
 
11
from wadllib import __version__
 
12
 
 
13
setup(
 
14
    name        = 'wadllib',
 
15
    version     = __version__,
 
16
    description = """\
 
17
wadllib is a client-side package for inspecting and navigating between
 
18
HTTP resources described using the Web Application Description
 
19
Language.
 
20
""",
 
21
    author      = 'The Launchpad developers',
 
22
    download_url= 'https://launchpad.net/wadllib/+download',
 
23
    packages    = find_packages(),
 
24
    include_package_data = True,
 
25
    zip_safe    = True,
 
26
    setup_requires = [
 
27
        'setuptools_bzr',
 
28
        ]
 
29
    ,
 
30
    license='LGPL 3 or later',
 
31
    extras_require = {
 
32
        'nose': ['nose'],
 
33
        },
 
34
    test_suite  = 'nose.collector',
 
35
    )