-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
27 lines (26 loc) · 929 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
import sys
from setuptools import setup
setup(name='modbus_logger',
version=1.1,
description='Read data using RS485 Modbus '+
'and store in local database.',
url='https://github.com/GuillermoElectrico/modbus-logger',
download_url='',
author='Samuel Vestlin',
author_email='samuel@elphy.se',
platforms='Raspberry Pi',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: MIT License',
'Operating System :: Raspbian-Armbian',
'Programming Language :: Python :: 3.5'
],
keywords='Logger RS485 Modbus',
install_requires=[]+(['setuptools','ez_setup','pyserial','modbus_tk', 'influxdb-client', 'pyyaml'] if "linux" in sys.platform else []),
license='MIT',
packages=[],
include_package_data=True,
tests_require=[],
test_suite='',
zip_safe=True)