forked from favalex/modbus-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 889 Bytes
/
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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='modbus_cli',
version='0.1.4rc0',
description='Command line tool to access Modbus devices',
long_description=readme(),
url='http://github.com/favalex/modbus-cli',
author='Gabriele Favalessa',
author_email='[email protected]',
license='MPL 2.0',
packages=['modbus_cli'],
scripts=['bin/modbus'],
install_requires=['umodbus'],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
])