Skip to content

Commit 307b175

Browse files
committed
docs: change "author" in license to pySerial-team
individual names are listed in CREDITS.rst
1 parent cc15462 commit 307b175

File tree

7 files changed

+28
-19
lines changed

7 files changed

+28
-19
lines changed

CREDITS.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
=========
2+
Credits
3+
=========
4+
5+
Main authors of pySerial-asyncio:
6+
7+
- Chris Liechti (zsquareplusc)
8+
- Robert Smallshire (rob-smallshire)
9+
10+
11+
Contributions by:
12+
13+
- David Ko
14+
- Nicolas Di Pietro
15+
- jabdoa2
16+
- ... not all names may be listed here, see also ``git log``
17+

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2001-2016 Chris Liechti <cliechti@gmx.net>
1+
Copyright (c) 2015-2016 pySerial-team (see CREDITS.rst)
22
All Rights Reserved.
33

44
Redistribution and use in source and binary forms, with or without

documentation/appendix.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
License
66
=======
7-
Copyright (c) 2015-2016 Chris Liechti <cliechti@gmx.net>
7+
Copyright (c) 2015-2016 pySerial-team (see CREDITS.rst)
88
All Rights Reserved.
99

1010
Redistribution and use in source and binary forms, with or without

documentation/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
# General information about the project.
4040
project = u'pySerial-asyncio'
41-
copyright = u'2015-2016, Chris Liechti'
41+
copyright = u'2015-2016, pySerial-team'
4242

4343
# The version info for the project you're documenting, acts as replacement for
4444
# |version| and |release|, also used in various other places throughout the
@@ -173,7 +173,7 @@
173173
# (source start file, target name, title, author, documentclass [howto/manual]).
174174
latex_documents = [
175175
('index', 'pySerial-asyncio.tex', u'pySerial-asyncio Documentation',
176-
u'Chris Liechti', 'manual'),
176+
u'pySerial-team', 'manual'),
177177
]
178178

179179
# The name of an image file (relative to this directory) to place at the top of

serial_asyncio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Experimental implementation of asyncio support.
44
#
55
# This file is part of pySerial. https://github.com/pyserial/pyserial-asyncio
6-
# (C) 2015-2016 Chris Liechti <cliechti@gmx.net>
6+
# (C) 2015-2016 pySerial-team
77
#
88
# SPDX-License-Identifier: BSD-3-Clause
99
"""\

setup.py

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,8 @@ def find_version(*file_paths):
5252
name="pyserial-asyncio",
5353
description="Python Serial Port Extension - Asynchronous I/O support",
5454
version=version,
55-
author="Chris Liechti",
56-
author_email="cliechti@gmx.net",
57-
url="https://github.com/pyserial/pyserial",
55+
author="pySerial-team",
56+
url="https://github.com/pyserial/pyserial-asyncio",
5857
packages=['serial_asyncio'],
5958
install_requires=[
6059
'pyserial',
@@ -63,15 +62,8 @@ def find_version(*file_paths):
6362
long_description="""\
6463
Async I/O extension package for the Python Serial Port Extension for OSX, Linux, BSD
6564
66-
Stable:
67-
68-
- Documentation: http://pythonhosted.org/pyserial/
69-
- Download Page: https://pypi.python.org/pypi/pyserial
70-
71-
Latest:
72-
73-
- Documentation: http://pyserial.readthedocs.io/en/latest/
74-
- Project Homepage: https://github.com/pyserial/pyserial
65+
- Documentation: http://pyserial-asyncio.readthedocs.io
66+
- Project Homepage: https://github.com/pyserial/pyserial-asyncio
7567
""",
7668
classifiers=[
7769
#~ 'Development Status :: 5 - Production/Stable',

test/test_asyncio.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
#
33
# This file is part of pySerial-asyncio - Cross platform serial port support for Python
4-
# (C) 2016 Chris Liechti <cliechti@gmx.net>
4+
# (C) 2016 pySerial-team
55
#
66
# SPDX-License-Identifier: BSD-3-Clause
77
"""\
@@ -11,7 +11,7 @@
1111
device connected, use:
1212
1313
$ cd pyserial-asyncio
14-
$ python -m test.test_asyncio /dev/cu.usbserial-A103LR1R
14+
$ python -m test.test_asyncio SERIALDEVICE
1515
1616
"""
1717

0 commit comments

Comments
 (0)