-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 736 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env python
from distutils.core import setup
README = open('README.rst').read()
setup(name='CraSSH',
version='2.8',
description='Cisco Remote Automation via SSH (or C.R.A.SSH for short) is a python script for automating commands on Cisco devices.',
long_description=README,
author='Nick Bettison',
author_email='linickx gmail com',
url='https://github.com/linickx/crassh/',
download_url='https://github.com/linickx/crassh/tarball/master',
keywords = ['Cisco', 'SSH', 'Automation', 'IOS', 'Router', 'Switch', 'Firewall', 'ASA', 'Catalyst'],
py_modules=['crassh'],
install_requires=['paramiko >= 1.10'],
scripts=['bin/crassh'],
license = "GPLv2",
)