~devcamcar/nova-adminclient/fix-get-user

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Devin Carlen
  • Date: 2011-03-16 20:03:59 UTC
  • Revision ID: devin.carlen@gmail.com-20110316200359-nebmcec74crbicrq
Added MANIFEST.in

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
 
23
23
setup(name = "nova-adminclient",
24
 
      version = "0.1",
25
 
      license = 'Apache 2.0',
 
24
      version = "0.1.2",
 
25
      license = 'Apache License (2.0)',
26
26
      description = "client for administering OpenStack Nova",
27
27
      author = 'OpenStack',
28
28
      author_email = 'nova@lists.launchpad.net',
29
29
      url='http://www.openstack.org',
30
30
      packages = find_packages('nova_adminclient'),
31
 
      package_dir = {'': 'nova_adminclient'},
32
31
      install_requires = ['setuptools', 'boto==1.9b'],
33
32
      classifiers = [
34
33
          'Development Status :: 5 - Production/Stable',
35
34
          'Intended Audience :: Developers',
36
 
          'License :: OSI Approved :: Apache License',
 
35
          'License :: OSI Approved :: Apache Software License',
37
36
          'Operating System :: OS Independent',
38
 
          'Programming Language :: Python',
 
37
          'Programming Language :: Python :: 2.6',
39
38
          'Topic :: Internet :: WWW/HTTP'])
40
39