forked from favalex/modbus-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (30 loc) · 1.01 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
from setuptools import setup
def readme():
with open('README.rst') as f:
return f.read()
setup(name='modbus_cli',
version='0.1.10',
description='Command line tool to access Modbus devices',
long_description=readme(),
long_description_content_type='text/x-rst',
url='http://github.com/favalex/modbus-cli',
author='Gabriele Favalessa',
author_email='[email protected]',
license='MPL 2.0',
packages=['modbus', 'modbus_cli'],
entry_points={
'console_scripts': [
'modbus=modbus:main'
],
},
install_requires=['umodbus', 'colorama'],
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',
])