-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (35 loc) · 1.23 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
from setuptools import setup, find_packages
from sshed import version
setup(
name='sshed',
author='Colin Wood',
author_email='[email protected]',
install_requires=[
'paramiko>=1.15',
],
url='http://cwood.github.com/sshed/',
download_url='http://github.com/cwood/sshed/tarball/master',
long_description=open('README.rst').read(),
version=version,
include_package_data=True,
packages=find_packages(),
description='Minimal Parmaiko/ssh2 wrapper to make working with SSH easy.',
tests_require=[
'nose',
],
keywords=['ssh', 'automation', 'remote', 'ssh2', 'OpenSSH'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: System :: Networking',
'Topic :: System :: Systems Administration',
]
)