File tree Expand file tree Collapse file tree 3 files changed +24
-7
lines changed
Expand file tree Collapse file tree 3 files changed +24
-7
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ ==================
2+ pyserial-asyncio
3+ ==================
4+
5+ Async I/O extension package for the Python Serial Port Extension for OSX, Linux, BSD
6+
7+ It depends on pySerial and only provides the subpackage ``serial.aio `` which is
8+ only compatible to Python 3.4 and newer.
9+
10+
11+ Stable:
12+
13+ - Documentation: http://pythonhosted.org/pyserial/
14+ - Download Page: https://pypi.python.org/pypi/pyserial
15+
16+ Latest:
17+
18+ - Documentation: http://pyserial.readthedocs.io/en/latest/
19+ - Project Homepage: https://github.com/pyserial/pyserial
Original file line number Diff line number Diff line change 1- # setup.py for pySerial
1+ # setup.py for pySerial-asyncio
22#
33# For Python 3.x use the corresponding Python executable,
44# e.g. "python3 setup.py ..."
55#
6- # (C) 2001 -2016 Chris Liechti <cliechti@gmx.net>
6+ # (C) 2015 -2016 Chris Liechti <cliechti@gmx.net>
77#
88# SPDX-License-Identifier: BSD-3-Clause
99import io
@@ -57,7 +57,7 @@ def find_version(*file_paths):
5757 url = "https://github.com/pyserial/pyserial" ,
5858 packages = ['serial' , 'serial.aio' ],
5959 install_requires = [
60- 'pyserial' ,
60+ 'pyserial' ,
6161 ],
6262 license = "BSD" ,
6363 long_description = """\
@@ -74,7 +74,8 @@ def find_version(*file_paths):
7474- Project Homepage: https://github.com/pyserial/pyserial
7575""" ,
7676 classifiers = [
77- 'Development Status :: 5 - Production/Stable' ,
77+ #~ 'Development Status :: 5 - Production/Stable',
78+ 'Development Status :: 4 - Beta' ,
7879 'Intended Audience :: Developers' ,
7980 'Intended Audience :: End Users/Desktop' ,
8081 'License :: OSI Approved :: BSD License' ,
You can’t perform that action at this time.
0 commit comments