-
Notifications
You must be signed in to change notification settings - Fork 215
/
setup.py
46 lines (41 loc) · 1.41 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
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
# -*- coding: utf_8 -*-
"""
Modbus TestKit: Implementation of Modbus protocol in python
(C)2009 - Luc Jean - [email protected]
(C)2009 - Apidev - http://www.apidev.fr
This is distributed under GNU LGPL license, see license.txt
"""
from setuptools import setup
from modbus_tk import VERSION
setup(
name='modbus_tk',
version=VERSION,
description="Implementation of modbus protocol in python",
long_description='''
Modbus Test Kit provides implementation of slave and master for Modbus TCP and RTU
IT helps to create Modbus app easily with Python
''',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Communications',
'Topic :: Software Development'
],
keywords='modbus, serial, tcp',
author='Luc Jean',
author_email='[email protected]',
maintainer='Luc Jean',
maintainer_email='[email protected]',
url='https://github.com/ljean/modbus-tk/',
license='LGPL-2.1-or-later',
packages=['modbus_tk'],
platforms=["Linux", "Mac OS X", "Win"],
install_requires=[
'pyserial>=3.1',
],
)