-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·37 lines (33 loc) · 1.18 KB
/
setup.py
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
#!/usr/bin/env python
"""
uModbus is a pure Python implementation of the Modbus protocol with support
for Python 2.7, 3.3, 3.4 and 3.5.
"""
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='0.8.2',
author='Auke Willem Oosterhoff',
author_email='[email protected]',
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',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Embedded Systems',
])