1 Star 4 Fork 7

风之狐/modbus-tk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
setup.py 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
#!/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',
],
)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/hchufeng/modbus-tk.git
[email protected]:hchufeng/modbus-tk.git
hchufeng
modbus-tk
modbus-tk
master

搜索帮助