forked from IBM/netconf-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 829 Bytes
/
setup.py
File metadata and controls
28 lines (25 loc) · 829 Bytes
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
import json
from setuptools import setup, find_namespace_packages
with open('netconfdriver/pkg_info.json') as fp:
_pkg_info = json.load(fp)
with open("DESCRIPTION.md", "r") as description_file:
long_description = description_file.read()
setup(
name='netconfdriver',
version=_pkg_info['version'],
description='None',
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_namespace_packages(include=['netconfdriver*','ncclient*']),
include_package_data=True,
install_requires=[
'gunicorn==20.1.0',
'lxml==4.8.0',
'paramiko==2.10.3',
'ignition-framework=={0}'.format(_pkg_info['ignition-version'])
],
entry_points='''
[console_scripts]
netconfdriver-dev=netconfdriver.__main__:main
'''
)