-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (24 loc) · 827 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from setuptools import setup
import os.path
HERE = os.path.dirname(__file__)
with open(os.path.join(HERE, 'README.rst')) as f:
ldesc = f.read()
setup(
name='novaclient-auth-secretkey',
version='0.1',
author='fr33jc',
author_email='[email protected]',
packages=['novaclient_secretkey'],
license='MIT',
description=('Authentication plugin for novaclient enabling '
'API key and secret key'),
long_description=ldesc,
platforms='POSIX',
url='https://github.com/fr33jc/novaclient-auth-secretkey',
install_requires=['python-novaclient'],
entry_points={
'openstack.client.authenticate': [
'secretkey = novaclient_secretkey.auth_plugin:secretkey',
],
},
)