mirror of
https://github.com/thingsboard/thingsboard-gateway
synced 2025-10-26 22:31:42 +08:00
For release 2.1
This commit is contained in:
@@ -15,6 +15,7 @@ Thingsboard IoT Gateway provides following features:
|
||||
- **MQTT** connector to collect data that is published to external MQTT brokers.
|
||||
- **Modbus** connector to collect data from Modbus servers and slaves.
|
||||
- **BLE** connector to collect data from BLE devices.
|
||||
- **Request** connector to collect data from HTTP API.
|
||||
- **Custom** connector to collect data from custom protocols.
|
||||
- **Persistence** of collected data to guarantee data delivery in case of network and hardware failures.
|
||||
- **Automatic reconnect** to Thingsboard cluster.
|
||||
|
||||
@@ -7,4 +7,5 @@ pymodbus python3-pymodbus; PEP386
|
||||
pyserial python3-pyserial; PEP386
|
||||
pyyaml python3-PyYAML; PEP386
|
||||
pyrsistent python3-pyrsistent; PEP386
|
||||
importlib python3-importlib; PEP386
|
||||
importlib python3-importlib; PEP386
|
||||
jsonparh-rw python3-jsonpath-rw; PEP386
|
||||
@@ -1,6 +1,6 @@
|
||||
[metadata]
|
||||
name = thingsboard-gateway
|
||||
version = 2.0.0.9
|
||||
version = 2.1
|
||||
description = Thingsboard Gateway for IoT devices.
|
||||
long_description= file: README.md
|
||||
license = Apache Software License (Apache Software License 2.0)
|
||||
|
||||
7
setup.py
7
setup.py
@@ -18,13 +18,14 @@ setup(
|
||||
long_description_content_type="text/markdown",
|
||||
packages=['thingsboard_gateway', 'thingsboard_gateway.gateway', 'thingsboard_gateway.storage',
|
||||
'thingsboard_gateway.tb_client', 'thingsboard_gateway.connectors', 'thingsboard_gateway.connectors.ble',
|
||||
'thingsboard_gateway.connectors.mqtt', 'thingsboard_gateway.connectors.opcua',
|
||||
'thingsboard_gateway.connectors.mqtt', 'thingsboard_gateway.connectors.opcua', 'thingsboard_gateway.connectors.request'
|
||||
'thingsboard_gateway.connectors.modbus', 'thingsboard_gateway.tb_utility', 'thingsboard_gateway.extensions',
|
||||
'thingsboard_gateway.extensions.mqtt', 'thingsboard_gateway.extensions.modbus', 'thingsboard_gateway.extensions.opcua',
|
||||
'thingsboard_gateway.extensions.ble', 'thingsboard_gateway.extensions.serial'
|
||||
'thingsboard_gateway.extensions.ble', 'thingsboard_gateway.extensions.serial', 'thingsboard_gateway.extensions.request'
|
||||
],
|
||||
install_requires=[
|
||||
'cffi',
|
||||
'jsonpath-rw',
|
||||
'pip',
|
||||
'jsonschema==3.1.1',
|
||||
'lxml',
|
||||
@@ -37,7 +38,7 @@ setup(
|
||||
'simplejson',
|
||||
'pyrsistent'
|
||||
],
|
||||
download_url='https://github.com/thingsboard/thingsboard-gateway/archive/2.0.0.9.tar.gz',
|
||||
download_url='https://github.com/thingsboard/thingsboard-gateway/archive/2.1.tar.gz',
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'thingsboard-gateway = thingsboard_gateway.tb_gateway:daemon'
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
%define name thingsboard-gateway
|
||||
%define version 2.0.0.1
|
||||
%define unmangled_version 2.0.0.1
|
||||
%define version 2.1
|
||||
%define unmangled_version 2.1
|
||||
%define release 1
|
||||
|
||||
Summary: Thingsboard Gateway for IoT devices.
|
||||
|
||||
Reference in New Issue
Block a user