~smoser/ubuntu/lucid/python-boto/debian-1.9b-merge

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): Eric Evans
  • Date: 2007-07-16 17:17:48 UTC
  • Revision ID: james.westby@ubuntu.com-20070716171748-bsw9rlyu0yuui9lb
Tags: upstream-0.9b
ImportĀ upstreamĀ versionĀ 0.9b

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
 
 
3
# Copyright (c) 2006 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
__version__ = '0.9b'
 
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
      url = "http://code.google.com/p/boto/",
 
38
      packages = [ 'boto', 'boto.sqs', 'boto.s3', 'boto.ec2',
 
39
                   'boto.mturk', 'tests'],
 
40
      scripts=['test.py'],
 
41
      license = 'MIT',
 
42
      platforms = 'Posix; MacOS X; Windows',
 
43
      classifiers = [ 'Development Status :: 3 - Alpha',
 
44
                      'Intended Audience :: Developers',
 
45
                      'License :: OSI Approved :: MIT License',
 
46
                      'Operating System :: OS Independent',
 
47
                      'Topic :: Internet',
 
48
                      ],
 
49
      )