We've discovered that having versions in setup_requires leads to evil
and death. Also, the setup-hooks in setup.cfg are completely unnecessary
anymore.
Change-Id: I8878e635e0828bbddb81d9c6321a9f10ad3b89fe
openstack.common.setup and openstack.common.version are now in the
standalone library pbr, so all projects using those two should
migrate.
Fixes bug 1179007.
Change-Id: I7ac1c37f0bf148619dffff8f454db05fc192e471
Add trove classifier to have the client listed among the
other OpenStack-related projets on PyPI.
Change-Id: If9e10b065d0c54825fb9138893c78cda3ef79ca2
Signed-off-by: Doug Hellmann <doug.hellmann@dreamhost.com>
Added @unauthenticated decorator to mark subcommands that do not
need authentication. And checks to skip authentication for these
commands.
Added novaclient.keystone to setup.py
Change-Id: Id2fd60af305c30a950bdbae8f897192bfae4d797
Python >= 2.7 has argparse has a builtin module, so there's no need to add
it to the this list of requirements.
Change-Id: I647cec70a564b1d184f0cb2aca6caf4d6478c403
Signed-off-by: Julien Danjou <julien.danjou@enovance.com>
Use "2012.1" as the version for python-novaclient, to align with
Nova common versioning (starting with Essex-2, python-novaclient
is shipped as a Nova project deliverable. Fixes bug 904182.
Change-Id: I85d742a346bbaae1dc92a476c140f7f862a0828c
Fixes bug 891442
Also, still need to support NOVA_API_KEY environment variable for now.
Bump version to 2.6.8 so we can get this into pypi
Updated setup.py to build properly
Change-Id: I16233ac559bf44b78666118d68975509da6bfb0d
With exclude=['tests'], tests.v1_0 and tests.v1_1 do not get excluded,
causing "python setup.py install" to pollute dist-packages with "tests"
rather than going under novaclient/
exclude=['tests', 'tests.*'] fixes this.
LP: #838298
Also see LP: #825127 comment #3