~ubuntu-branches/ubuntu/raring/glance/raring-updates

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandleman, Chuck Short
  • Date: 2012-08-16 13:58:32 UTC
  • mfrom: (1.1.41)
  • Revision ID: package-import@ubuntu.com-20120816135832-4m40ppptd1l073fr
Tags: 2012.2~f3-0ubuntu1
[ Adam Gandleman ]
* debian/patches/sql_conn.patch: Also set default sqlite path for
  in glance-api.conf. (LP: #1028711)
* debian/patches/fix-docs-build.patch: Fix docs build

[ Chuck Short ]
* New upstream version.
* debian/control: python-xattr is no longer a required depends.
  (LP: #1031396)
* debian/control: Move python-jsonschema to glance.
  (LP: #1030152)
* debian/control: Start the slow transition to python-glanceclient.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
import setuptools
18
18
 
19
19
from glance.openstack.common import setup
20
 
 
21
 
setup.write_vcsversion('glance/vcsversion.py')
22
 
 
23
 
# import this after write_vcsversion because version imports vcsversion
24
 
from glance import version
25
 
 
 
20
from glance.version import version_info as version
26
21
 
27
22
requires = setup.parse_requirements()
28
23
depend_links = setup.parse_dependency_links()
29
24
 
30
25
setuptools.setup(
31
26
    name='glance',
32
 
    version=version.canonical_version_string(),
 
27
    version=version.canonical_version_string(always=True),
33
28
    description='The Glance project provides services for discovering, '
34
29
                'registering, and retrieving virtual machine images',
35
30
    license='Apache License (2.0)',
58
53
             'bin/glance-control',
59
54
             'bin/glance-manage',
60
55
             'bin/glance-registry',
 
56
             'bin/glance-replicator',
61
57
             'bin/glance-scrubber'],
62
58
    py_modules=[])