PyserSSH/setup.py
damp11113 b6455ce6a3 Update 5.0
New main features
- ServerManager
- RemoDesk protocol support
- New client system
- Supported auth with none, password and public key
- Support remote monitor for mobaxterm user (beta)
- SFTP can set specific folder for user
- Support exec_request

New function
- Send_karaoke_effect
- ShowCursor
- SendBell
- NewSend for advance sending like print()
- Flag_TH for about
- wait_inputmouse for mouse input

Fixing
- (only python) fixing can't print color
without damp11113 library or print color library only in windows on python console
- Fixing sometime can't connect SFTP

and more
2024-09-03 20:27:12 +07:00

43 lines
1.3 KiB
Python

from setuptools import setup, find_packages
setup(
name='PyserSSH',
version='5.0',
license='MIT',
author='DPSoftware Foundation',
author_email='contact@damp11113.xyz',
packages=find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/damp11113/PyserSSH',
description="python scriptable ssh server library. based on Paramiko",
long_description=open('README.md', 'r', encoding='utf-8').read(),
long_description_content_type='text/markdown',
keywords="SSH server",
python_requires='>=3.6',
classifiers=[
"Development Status :: 5 - Production/Stable"
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators"
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Topic :: Communications",
"Topic :: Internet",
"Topic :: Internet :: File Transfer Protocol (FTP)",
"Topic :: Software Development",
"Topic :: Terminals"
],
install_requires=[
"paramiko",
"psutil"
],
extras_require={
'RemoDesk': [
"mouse",
"keyboard",
"Brotli",
"pillow",
"numpy"
],
}
)