~justin-fathomdb/nova/justinsb-openstack-api-volumes

« back to all changes in this revision

Viewing changes to vendor/boto/setup.py

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
# Copyright (c) 2006-2009 Mitch Garnaat http://garnaat.org/
 
4
#
 
5
# Permission is hereby granted, free of charge, to any person obtaining a
 
6
# copy of this software and associated documentation files (the
 
7
# "Software"), to deal in the Software without restriction, including
 
8
# without limitation the rights to use, copy, modify, merge, publish, dis-
 
9
# tribute, sublicense, and/or sell copies of the Software, and to permit
 
10
# persons to whom the Software is furnished to do so, subject to the fol-
 
11
# lowing conditions:
 
12
#
 
13
# The above copyright notice and this permission notice shall be included
 
14
# in all copies or substantial portions of the Software.
 
15
#
 
16
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 
17
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
 
18
# ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
 
19
# SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 
 
20
# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
21
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 
22
# IN THE SOFTWARE.
 
23
 
 
24
try:
 
25
    from setuptools import setup
 
26
except ImportError:
 
27
    from distutils.core import setup
 
28
 
 
29
from boto import Version
 
30
 
 
31
setup(name = "boto",
 
32
      version = Version,
 
33
      description = "Amazon Web Services Library",
 
34
      long_description="Python interface to Amazon's Web Services.",
 
35
      author = "Mitch Garnaat",
 
36
      author_email = "mitch@garnaat.com",
 
37
      scripts = ["bin/sdbadmin", "bin/elbadmin", "bin/cfadmin", 
 
38
                 "bin/s3put", "bin/fetch_file", "bin/launch_instance", 
 
39
                 "bin/list_instances", "bin/taskadmin", "bin/kill_instance", 
 
40
                 "bin/bundle_image", "bin/pyami_sendmail"],
 
41
      url = "http://code.google.com/p/boto/",
 
42
      packages = [ 'boto', 'boto.sqs', 'boto.s3',
 
43
                   'boto.ec2', 'boto.ec2.cloudwatch', 'boto.ec2.autoscale', 'boto.ec2.elb',
 
44
                   'boto.sdb', 'boto.sdb.persist', 'boto.sdb.db', 'boto.sdb.db.manager',
 
45
                   'boto.mturk', 'boto.pyami', 'boto.mashups', 'boto.contrib', 'boto.manage',
 
46
                   'boto.services', 'boto.tests', 'boto.cloudfront', 'boto.rds', 'boto.vpc',
 
47
                   'boto.fps', 'boto.emr'],
 
48
      license = 'MIT',
 
49
      platforms = 'Posix; MacOS X; Windows',
 
50
      classifiers = [ 'Development Status :: 3 - Alpha',
 
51
                      'Intended Audience :: Developers',
 
52
                      'License :: OSI Approved :: MIT License',
 
53
                      'Operating System :: OS Independent',
 
54
                      'Topic :: Internet',
 
55
                      ],
 
56
      )