-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.py
43 lines (37 loc) · 1.32 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
#!/usr/bin/env python
# -*- coding: utf_8 -*-
"""
Modbus TestKit: Implementation of Modbus protocol in python
(C)2009 - Luc Jean - luc.jean@gmail.com
(C)2009 - Apidev - http://www.apidev.fr
This is distributed under GNU LGPL license, see license.txt
"""
from setuptools import setup
version = '0.4'
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
The main goal is to be used as testing tools.
""",
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'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='luc.jean@gmail.com',
maintainer='Luc Jean',
maintainer_email='luc.jean@gmail.com',
url='http://code.google.com/p/modbus-tk/',
license='LGPL',
packages=['modbus_tk'],
platforms=["Linux", "Mac OS X", "Win"],
)