Skip to content

Instantly share code, notes, and snippets.

@sivel
Created May 26, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sivel/4eab70746b747affa9b3 to your computer and use it in GitHub Desktop.
Save sivel/4eab70746b747affa9b3 to your computer and use it in GitHub Desktop.
OpenStack No Op Auth Plugin
class NoOpAuthPlugin(object):
pass
import setuptools
setuptools.setup(
name="os-noop-auth-plugin",
version="1.0",
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
install_requires=['python-novaclient'],
entry_points={
"openstack.client.auth_plugin": [
"rackspace = os_noop_auth_plugin:NoOpAuthPlugin"
]
},
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment