Skip to content

Commit 66fa6be

Browse files
committed
docs: update readme, change trove classifier to beta
1 parent fae3855 commit 66fa6be

File tree

3 files changed

+24
-7
lines changed

3 files changed

+24
-7
lines changed

README.md

Lines changed: 0 additions & 3 deletions
This file was deleted.

README.rst

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
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

setup.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
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
99
import 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',

0 commit comments

Comments
 (0)