-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
36 lines (32 loc) · 1.18 KB
/
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
35
36
import json
from setuptools import setup, find_namespace_packages
with open('osvimdriver/pkg_info.json') as fp:
_pkg_info = json.load(fp)
with open("DESCRIPTION.md", "r") as description_file:
long_description = description_file.read()
ignition_version = _pkg_info['ignition-version']
setup(
name='os-vim-driver',
version=_pkg_info['version'],
author='IBM',
description='Openstack implementation of a VIM driver',
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/IBM/openstack-vim-driver",
packages=find_namespace_packages(include=['osvimdriver*']),
include_package_data=True,
install_requires=[
f'ignition-framework=={ignition_version}',
'python-heatclient>=1.17.0,<2.0',
'python-neutronclient>=6.5.1,<7.0',
'python-novaclient>=13.0.0,<14.0.0',
'tosca-parser @ git+https://github.com/IBM/tosca-parser.git@cp4na',
'heat-translator @ git+https://github.com/IBM/heat-translator.git@accanto-nfv',
'gunicorn==22.0.0',
'uvicorn==0.29.0'
],
entry_points='''
[console_scripts]
ovd-dev=osvimdriver.__main__:main
'''
)