-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,8 +51,8 @@ | |
|
||
# General information about the project. | ||
project = 'uModbus' | ||
copyright = '2018, Auke Willem Oosterhoff <[email protected]>' | ||
author = 'Auke Willem Oosterhoff <[email protected]>' | ||
copyright = '2019, Auke Willem Oosterhoff <[email protected]>' | ||
author = 'Auke Willem Oosterhoff <[email protected]>' | ||
|
||
# The version info for the project you're documenting, acts as replacement for | ||
# |version| and |release|, also used in various other places throughout the | ||
|
@@ -61,7 +61,7 @@ | |
# The short X.Y version. | ||
version = '1.0' | ||
# The full version, including alpha/beta/rc tags. | ||
release = '1.0.0' | ||
release = '1.0.3' | ||
|
||
# The language for content autogenerated by Sphinx. Refer to documentation | ||
# for a list of supported languages. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
#!/usr/bin/env python | ||
""" | ||
uModbus is a pure Python implementation of the Modbus protocol with support | ||
for Python 2.7, 3.3, 3.4, 3.5 and 3.6. | ||
for Python 2.7, 3.4, 3.5, 3.6, 3.7 and 3.8. | ||
""" | ||
import os | ||
|
@@ -12,7 +12,7 @@ | |
long_description = open(os.path.join(cwd, 'README.rst'), 'r').read() | ||
|
||
setup(name='uModbus', | ||
version='1.0.2', | ||
version='1.0.3', | ||
author='Auke Willem Oosterhoff', | ||
author_email='[email protected]', | ||
description='Implementation of the Modbus protocol in pure Python.', | ||
|
@@ -35,9 +35,10 @@ | |
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.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', | ||
'Topic :: Software Development :: Embedded Systems', | ||
]) |