mirror of https://github.com/huashengdun/webssh
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
983 B
37 lines
983 B
import codecs |
|
from setuptools import setup |
|
from webssh._version import __version__ as version |
|
|
|
|
|
with codecs.open('README.rst', encoding='utf-8') as f: |
|
long_description = f.read() |
|
|
|
|
|
setup( |
|
name='webssh', |
|
version=version, |
|
description='Web based ssh client', |
|
long_description=long_description, |
|
author='Shengdun Hua', |
|
author_email='webmaster0115@gmail.com', |
|
url='https://github.com/huashengdun/webssh', |
|
packages=['webssh'], |
|
entry_points=''' |
|
[console_scripts] |
|
wssh = webssh.main:main |
|
''', |
|
license='MIT', |
|
include_package_data=True, |
|
classifiers=[ |
|
'Programming Language :: Python', |
|
'Programming Language :: Python :: 3', |
|
'Programming Language :: Python :: 3.8', |
|
'Programming Language :: Python :: 3.9', |
|
'Programming Language :: Python :: 3.10', |
|
'Programming Language :: Python :: 3.11', |
|
], |
|
install_requires=[ |
|
'tornado>=4.5.0', |
|
'paramiko>=2.3.1', |
|
], |
|
)
|
|
|