-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (31 loc) · 977 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
29
30
31
32
33
34
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(
name='openstack-vim-driver',
version='6.0.1',
description='OpenStack VIM Driver for Open Baton',
long_description=readme,
long_description_content_type='text/markdown',
url='https://github.com/openbaton/openstack-python-vim-driver',
author="Open Baton",
author_email="[email protected]",
license='Apache 2',
packages=find_packages(),
install_requires=[
'python-plugin-sdk',
'python-glanceclient',
'python-neutronclient',
'python-novaclient',
'requests'
],
scripts=['openstack-vim-driver'],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Topic :: Utilities',
'License :: OSI Approved :: Apache Software License',
]
)