~mathiaz/+junk/image-store-proxy-pkg-ubuntu

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Mathias Gug
  • Date: 2009-09-14 15:35:26 UTC
  • Revision ID: mathias.gug@canonical.com-20090914153526-9x42slhhw3ixcodu
Import initial upstream code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
import os
 
3
import re
 
4
 
 
5
from setuptools import setup
 
6
 
 
7
 
 
8
if os.path.isfile("MANIFEST"):
 
9
    os.unlink("MANIFEST")
 
10
 
 
11
 
 
12
VERSION = re.search('__version__ = "([^"]+)"',
 
13
                    open("imagestore/__init__.py").read()).group(1)
 
14
 
 
15
 
 
16
setup(name="image-store-proxy",
 
17
      version = VERSION,
 
18
      description = "Image Store Proxy for the Canonical Image Store",
 
19
      author = "Gustavo Niemeyer",
 
20
      author_email = "gustavo@niemeyer.net",
 
21
      license = "GPL",
 
22
      long_description =
 
23
"""\
 
24
The Image Store Proxy sits in the middle of three entities: the
 
25
Eucalyptus Image Store UI, the Eucalyptus S3 and EC2 APIs, and
 
26
the upstream Canonical Image Store API.
 
27
""",
 
28
      packages = [
 
29
          "imagestore",
 
30
          "imagestore.tests",
 
31
          "imagestore.lib",
 
32
          "imagestore.lib.tests",
 
33
          ],
 
34
      )