1 Star 0 Fork 0

SamSam/webssh

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 983 Bytes
一键复制 编辑 原始数据 按行查看 历史
Sheng 提交于 2023-02-28 19:30 . Support for Python 3.8+
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',
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/onforyou/webssh.git
git@gitee.com:onforyou/webssh.git
onforyou
webssh
webssh
master

搜索帮助