|
1 | 1 | #!/usr/bin/env python |
2 | 2 | """ |
3 | 3 | uModbus is a pure Python implementation of the Modbus protocol with support |
4 | | -for Python 2.7, 3.3, 3.4, 3.5 and 3.6. |
| 4 | +for Python 2.7, 3.4, 3.5, 3.6, 3.7 and 3.8. |
5 | 5 |
|
6 | 6 | """ |
7 | 7 | import os |
|
12 | 12 | long_description = open(os.path.join(cwd, 'README.rst'), 'r').read() |
13 | 13 |
|
14 | 14 | setup(name='uModbus', |
15 | | - version='1.0.2', |
| 15 | + version='1.0.3', |
16 | 16 | author='Auke Willem Oosterhoff', |
17 | 17 | |
18 | 18 | description='Implementation of the Modbus protocol in pure Python.', |
|
35 | 35 | 'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)', |
36 | 36 | 'Operating System :: OS Independent', |
37 | 37 | 'Programming Language :: Python :: 2.7', |
38 | | - 'Programming Language :: Python :: 3.3', |
39 | 38 | 'Programming Language :: Python :: 3.4', |
40 | 39 | 'Programming Language :: Python :: 3.5', |
41 | 40 | 'Programming Language :: Python :: 3.6', |
| 41 | + 'Programming Language :: Python :: 3.7', |
| 42 | + 'Programming Language :: Python :: 3.8', |
42 | 43 | 'Topic :: Software Development :: Embedded Systems', |
43 | 44 | ]) |
0 commit comments