mirror of
https://github.com/damp11113/PyserSSH.git
synced 2025-04-27 22:48:11 +00:00
fix setup.py not found utils folder
This commit is contained in:
parent
64bb2b0616
commit
a3f1b50303
5
setup.py
5
setup.py
@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='PyserSSH',
|
name='PyserSSH',
|
||||||
version='5.1.1',
|
version='5.1.2',
|
||||||
license='MIT',
|
license='MIT',
|
||||||
author='DPSoftware Foundation',
|
author='DPSoftware Foundation',
|
||||||
author_email='contact@damp11113.xyz',
|
author_email='contact@damp11113.xyz',
|
||||||
@ -37,7 +37,8 @@ setup(
|
|||||||
"keyboard",
|
"keyboard",
|
||||||
"Brotli",
|
"Brotli",
|
||||||
"pillow",
|
"pillow",
|
||||||
"numpy"
|
"numpy",
|
||||||
|
"opencv-python"
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
)
|
)
|
@ -25,7 +25,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|||||||
SOFTWARE.
|
SOFTWARE.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import serial
|
#import serial
|
||||||
import socket
|
import socket
|
||||||
import paramiko
|
import paramiko
|
||||||
from abc import ABC, abstractmethod
|
from abc import ABC, abstractmethod
|
||||||
|
38
src/PyserSSH/utils/__init__.py
Normal file
38
src/PyserSSH/utils/__init__.py
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
"""
|
||||||
|
PyserSSH - A Scriptable SSH server. For more info visit https://github.com/DPSoftware-Foundation/PyserSSH
|
||||||
|
Copyright (C) 2023-present DPSoftware Foundation (MIT)
|
||||||
|
|
||||||
|
Visit https://github.com/DPSoftware-Foundation/PyserSSH
|
||||||
|
|
||||||
|
MIT License
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
|
"""
|
||||||
|
|
||||||
|
"""
|
||||||
|
note
|
||||||
|
|
||||||
|
ansi cursor arrow
|
||||||
|
up - \x1b[A
|
||||||
|
down - \x1b[B
|
||||||
|
left - \x1b[D
|
||||||
|
right - \x1b[C
|
||||||
|
|
||||||
|
https://en.wikipedia.org/wiki/ANSI_escape_code
|
||||||
|
"""
|
Loading…
x
Reference in New Issue
Block a user