-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (39 loc) · 1.34 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
#!/usr/bin/env python
import os
from setuptools import setup
cwd = os.path.dirname(os.path.abspath(__name__))
long_description = open(os.path.join(cwd, 'README.rst'), 'r').read()
setup(name='Tolk',
version='0.2.1',
author='Auke Willem Oosterhoff',
author_email='[email protected]',
description='JSON-RPC proxy for talking Modbus over RTU and TCP.',
url='https://github.com/AdvancedClimateSystems/Tolk/',
long_description=long_description,
license='MPL',
packages=[
'tolk',
'scripts',
],
install_requires=[
'docopt>=0.6.2',
'logbook>=0.11.2',
'modbus-tk>=0.4.3',
'python-jsonrpc>=0.7.12',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: Unix',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Embedded Systems',
],
entry_points={
'console_scripts': [
'json_rpc_client = scripts.json_rpc_client:main',
'modbus_tcp_slave = scripts.modbus_tcp_slave:main',
'tolk_server = scripts.tolk_server:main',
]
})