-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
25 lines (24 loc) · 967 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 clicrud
'''
from setuptools import setup, find_packages
setup(name='clicrud',
version='0.3.03',
description='Brocade CLI CRUD Operations Library.',
author='Brocade Communications Systems, Inc.',
author_email='dgee@brocade.com',
url='http://www.brocade.com/',
packages=find_packages(),
install_requires=["paramiko>=2.0.2", "multiprocessing>=2.6.2.1", "psutil>=4.3.1", "jinja2"],
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'
])