mirror of https://github.com/huashengdun/webssh
Support for Python 3.8+
parent
5ffb1da69b
commit
04a9bd5eff
|
@ -4,6 +4,8 @@ language: python
|
|||
python:
|
||||
- "3.8"
|
||||
- "3.9"
|
||||
- "3.10"
|
||||
- "3.11"
|
||||
|
||||
install:
|
||||
- pip install -r requirements.txt
|
||||
|
|
|
@ -37,7 +37,7 @@ A simple web application to be used as an ssh client to connect to your ssh serv
|
|||
|
||||
### Requirements
|
||||
|
||||
* Python 2.7/3.4+
|
||||
* Python 3.8+
|
||||
|
||||
|
||||
### Quickstart
|
||||
|
|
|
@ -41,7 +41,7 @@ How it works
|
|||
Requirements
|
||||
~~~~~~~~~~~~
|
||||
|
||||
- Python 2.7/3.4+
|
||||
- Python 3.8+
|
||||
|
||||
Quickstart
|
||||
~~~~~~~~~~
|
||||
|
|
8
setup.py
8
setup.py
|
@ -24,15 +24,11 @@ setup(
|
|||
include_package_data=True,
|
||||
classifiers=[
|
||||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'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',
|
||||
|
|
Loading…
Reference in New Issue