-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathsetup.py
60 lines (55 loc) · 1.92 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#
# Copyright (c) 2018 Cisco and/or its affiliates
#
import os
import versioneer
from setuptools import setup
__author__ = "Einar Nilsen-Nygaard"
__author_email__ = "[email protected]"
__copyright__ = "Copyright (c) 2018 Cisco and/or its affiliates."
__license__ = "Apache 2.0"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='ncc',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description=('A set of NETCONF/YANG-focused scripts using ncclient'),
long_description="""The package ncc contains a set of scripts for working with NETCONF/YANG via the ncclient library. Scripts support simple tasks such as get/get-config/edit-config and schema download and more! Not all scripts in the repository itself are installed.""",
packages = ['nccutil'],
scripts=[
'ncc-capture-schema',
'ncc-get-all-schema',
'ncc-get-schema',
'ncc-yang-push',
'ncc',
],
author=__author__,
author_email=__author_email__,
license=__license__ + "; " + __copyright__,
url='https://github.com/CiscoDevNet/ncc',
download_url='https://pypi.python.org/pypi/ncc',
install_requires=[
'Jinja2>=2.8',
'pyang>=2.3.2',
'ncclient>=0.6.10',
'GitPython>=2.1.3',
'beautifulsoup4>=4.6.0',
'netmiko>=2.0.2',
'requests>=2.27.0',
'urllib3>=1.25.6',
],
include_package_data=True,
keywords=['yang', 'netconf'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)