forked from fgimian/paramiko-expect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.11 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
# Read the long description from README.rst
with open('README.rst') as f:
long_description = f.read()
setup(
name='paramiko-expect',
version='0.3.5',
url='https://github.com/fgimian/paramiko-expect',
license='MIT',
author='Fotis Gimian',
author_email='[email protected]',
description='An expect-like extension for the Paramiko SSH library',
long_description=long_description,
long_description_content_type='text/x-rst',
platforms='Posix',
py_modules=['paramiko_expect'],
install_requires=[
'paramiko>=1.10.1',
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Developers'
]
)