1
0
mirror of https://github.com/thingsboard/thingsboard-gateway synced 2025-10-26 22:31:42 +08:00

For pre-release

This commit is contained in:
zbeacon
2020-01-19 14:44:23 +02:00
2 changed files with 40 additions and 2 deletions

View File

@@ -2,7 +2,6 @@
name = thingsboard-gateway
version = 2.0.0.5
description = Thingsboard Gateway for IoT devices.
long_description = The Thingsboard IoT Gateway is an open-source solution that allows you to integrate devices connected to legacy and third-party systems with Thingsboard.
license = Apache Software License (Apache Software License 2.0)
url = https://github.com/thingsboard/thingsboard-gateway
author = ThingsBoard
@@ -10,7 +9,7 @@ author_email = info@thingsboard.io
[options]
include_package_data = True
python_requires = >=3.4
python_requires = >=3.5
[options.package_data]
* = config/*

View File

@@ -15,6 +15,45 @@
from setuptools import setup
setup(
long_description="""# ThingsBoard IoT Gateway
The Thingsboard **IoT Gateway** is an open-source solution that allows you to integrate devices connected to legacy and third-party systems with Thingsboard.
Thingsboard is an open-source IoT platform for data collection, processing, visualization, and device management. See [**What is Thingsboard?**](https://thingsboard.io/docs/getting-started-guides/what-is-thingsboard/) if you are new platform user.
[**What is ThingsBoard IoT Gateway?**](https://thingsboard.io/docs/iot-gateway/what-is-iot-gateway/)
![ThingsBoard IoT Gateway architecture](http://thingsboard.io/images/gateway/python-gateway.png)
### Gateway features
Thingsboard IoT Gateway provides following features:
- **OPC-UA** connector to collect data from devices that are connected to OPC-UA servers.
- **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.
- **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.
- Simple yet powerful **mapping** of incoming data and messages **to unified format**.
### Architecture
The IoT Gateway is built on top of **Python**, however is different from similar projects that leverage OSGi technology.
The idea is distantly similar to microservices architecture.
The gateway supports custom connectors to connect to new devices or servers and custom converters for processing data from devices.
Especially, when we are talking about language APIs and existing libraries to work with serial ports, GPIOs, I2C, and new modules and sensors that are released every day.
The Gateway provides simple integration APIs, and encapsulates common Thingsboard related tasks: device provisioning, local data persistence and delivery, message converters and other.
For processing data from devices you also can write custom converter, it will receive information from device and send it to converter to convert to unified format before sending it to the ThingsBoard cluster.
## Support
- [Community chat](https://gitter.im/thingsboard/chat)
- [Q&A forum](https://groups.google.com/forum/#!forum/thingsboard)
- [Stackoverflow](http://stackoverflow.com/questions/tagged/thingsboard)""",
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',