1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
#!/usr/bin/env python
"""
uModbus is a pure Python implementation of the Modbus protocol with support
for Python 2.7, 3.4, 3.5, 3.6, 3.7 and 3.8.
"""
import os
from setuptools import setup
cwd = os.path.dirname(os.path.abspath(__name__))
long_description = open(os.path.join(cwd, 'README.rst'), 'r').read()
setup(name='uModbus',
version='1.0.4',
author='Auke Willem Oosterhoff',
author_email='a.oosterhoff@climotion.com',
description='Implementation of the Modbus protocol in pure Python.',
url='https://github.com/AdvancedClimateSystems/umodbus/',
long_description=long_description,
license='MPL',
packages=[
'umodbus',
'umodbus.client',
'umodbus.client.serial',
'umodbus.server',
'umodbus.server.serial',
],
install_requires=[
'pyserial~=3.4',
],
classifiers=[
'Development Status :: 6 - Mature',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'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',
])
|