~ubuntu-branches/ubuntu/raring/nova/raring-proposed

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Adam Gandelman, Chuck Short
  • Date: 2012-11-23 09:04:58 UTC
  • mfrom: (1.1.66)
  • Revision ID: package-import@ubuntu.com-20121123090458-91565o7aev1i1h71
Tags: 2013.1~g1-0ubuntu1
[ Adam Gandelman ]
* debian/control: Ensure novaclient is upgraded with nova,
  require python-keystoneclient >= 1:2.9.0. (LP: #1073289)
* debian/patches/{ubuntu/*, rbd-security.patch}: Dropped, applied
  upstream.
* debian/control: Add python-testtools to Build-Depends.

[ Chuck Short ]
* New upstream version.
* Refreshed debian/patches/avoid_setuptools_git_dependency.patch.
* debian/rules: FTBFS if missing binaries.
* debian/nova-scheudler.install: Add missing rabbit-queues and
  nova-rpc-zmq-receiver.
* Remove nova-volume since it doesnt exist anymore, transition to cinder-*.
* debian/rules: install apport hook in the right place.
* debian/patches/ubuntu-show-tests.patch: Display test failures.
* debian/control: Add depends on genisoimage
* debian/control: Suggest guestmount.
* debian/control: Suggest websockify. (LP: #1076442)
* debian/nova.conf: Disable nova-volume service.
* debian/control: Depend on xen-system-* rather than the hypervisor.
* debian/control, debian/mans/nova-conductor.8, debian/nova-conductor.init,
  debian/nova-conductor.install, debian/nova-conductor.logrotate
  debian/nova-conductor.manpages, debian/nova-conductor.postrm
  debian/nova-conductor.upstart.in: Add nova-conductor service.
* debian/control: Add python-fixtures as a build deps.

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16
16
#    License for the specific language governing permissions and limitations
17
17
#    under the License.
18
 
import glob
19
 
import os
20
 
 
21
18
import setuptools
22
19
 
23
20
from nova.openstack.common import setup as common_setup
31
28
      author='OpenStack',
32
29
      author_email='nova@lists.launchpad.net',
33
30
      url='http://www.openstack.org/',
 
31
      classifiers=[
 
32
          'Environment :: OpenStack',
 
33
          'Intended Audience :: Information Technology',
 
34
          'Intended Audience :: System Administrators',
 
35
          'License :: OSI Approved :: Apache Software License',
 
36
          'Operating System :: POSIX :: Linux',
 
37
          'Programming Language :: Python',
 
38
          'Programming Language :: Python :: 2',
 
39
          'Programming Language :: Python :: 2.7',
 
40
          ],
34
41
      cmdclass=common_setup.get_cmdclass(),
35
42
      packages=setuptools.find_packages(exclude=['bin', 'smoketests']),
36
43
      install_requires=requires,
42
49
               'bin/nova-api-ec2',
43
50
               'bin/nova-api-metadata',
44
51
               'bin/nova-api-os-compute',
45
 
               'bin/nova-api-os-volume',
46
52
               'bin/nova-rpc-zmq-receiver',
47
53
               'bin/nova-cert',
48
54
               'bin/nova-clear-rabbit-queues',
49
55
               'bin/nova-compute',
 
56
               'bin/nova-conductor',
50
57
               'bin/nova-console',
51
58
               'bin/nova-consoleauth',
52
59
               'bin/nova-dhcpbridge',
56
63
               'bin/nova-objectstore',
57
64
               'bin/nova-rootwrap',
58
65
               'bin/nova-scheduler',
59
 
               'bin/nova-volume',
60
 
               'bin/nova-volume-usage-audit',
61
66
               'bin/nova-xvpvncproxy',
62
67
              ],
63
68
        py_modules=[])