Ai
1 Star 0 Fork 0

xzcoder/ssh4p

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
setup.py 1.39 KB
一键复制 编辑 原始数据 按行查看 历史
朱帅 提交于 2022-07-26 11:16 +08:00 . feat: cmd autocomplete
from distutils.core import setup
import os
from ssh4plib import version
long_description = """a shell ssh manager tools for python"""
setup(
name="ssh4p",
version=version.VERSION,
author="xzcoder",
author_email="zhushuai_it@163.com",
description=long_description,
long_description=long_description,
platforms=['linux', 'macos'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.4",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Clustering",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
],
packages=['ssh4plib'],
scripts=[os.path.join("bin", p) for p in ["zssh", "zscp", "zssh-manager"]],
install_requires=["pexpect", "argcomplete"]
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/xzcoder/ssh4p.git
git@gitee.com:xzcoder/ssh4p.git
xzcoder
ssh4p
ssh4p
main

搜索帮助