~ubuntu-cloud-archive/ubuntu/precise/nova/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Package Import Robot
  • Author(s): Chuck Short, Chuck Short, Adam Gandleman
  • Date: 2012-01-13 09:51:10 UTC
  • mfrom: (1.1.40)
  • Revision ID: package-import@ubuntu.com-20120113095110-ffd6163drcg77wez
Tags: 2012.1~e3~20120113.12049-0ubuntu1
[Chuck Short]
* New upstream version.
* debian/nova_sudoers, debian/nova-common.install, 
  Switch out to nova-rootwrap. (LP: #681774)
* Add "get-origsource-git" which allows developers to 
  generate a tarball from github, by doing:
  fakeroot debian/rules get-orig-source-git
* debian/debian/nova-objectstore.logrotate: Dont determine
  if we are running Debian or Ubuntu. (LP: #91379)

[Adam Gandleman]
* Removed python-nova.postinst, let dh_python2 generate instead since
  python-support is not a dependency. (LP: #907543)

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
                BuildDoc.run(self)
56
56
    nova_cmdclass['build_sphinx'] = local_BuildDoc
57
57
 
58
 
except:
 
58
except Exception:
59
59
    pass
60
60
 
61
61
 
72
72
    return package_data
73
73
 
74
74
 
75
 
def load_required_packages():
76
 
    with file('tools/pip-requires', 'r') as f:
77
 
        return [line.strip() for line in f]
78
 
 
79
 
 
80
 
required_packages = load_required_packages()
81
 
 
82
75
setup(name='nova',
83
76
      version=version.canonical_version_string(),
84
77
      description='cloud computing fabric controller',
90
83
      include_package_data=True,
91
84
      test_suite='nose.collector',
92
85
      data_files=find_data_files('share/nova', 'tools'),
93
 
      install_requires=required_packages,
94
86
      scripts=['bin/nova-ajax-console-proxy',
95
87
               'bin/nova-api',
96
88
               'bin/nova-api-ec2',