-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
25 lines (24 loc) · 948 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
#!/usr/bin/env python
'''
Setup for pynos
'''
from setuptools import setup, find_packages
setup(name='pynos',
version='1.3.26',
description='Brocade NOS Library.',
author='Brocade Communications Systems, Inc.',
author_email='[email protected], [email protected]',
url='http://www.brocade.com/',
packages=find_packages(exclude=['templates']),
install_requires=["ncclient==0.4.5", "ipaddress"],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Networking'
])