This commit is contained in:
lucadruda 2020-06-11 17:37:19 +02:00
Родитель 6043c09805
Коммит d3bc11a62a
2 изменённых файлов: 2 добавлений и 67 удалений

Просмотреть файл

@ -1,62 +0,0 @@
### 0.1.5
- add baltimore.pem into pypi packaging
- fix README - pypi package name
- Enable: verify server certificate
- remove setProtocol (won't support)
- clean up error codes
- remove redundant loop on paho
- parse command name for user
### 0.1.6
- Support Python 3.4+
- make sure json parse input is string
- add more detail to json.parse failure messages
- use decode encoding instead of str for mqtt events
### 0.1.7
- adjust testing for micropython client
- merge mqtt publish interface
- pass the mqtt channel noise
### 0.2.0
- add x509 authentication support
- Update README
### 0.2.2
- fix documentation typos and add docs for modelData ++ enable it
### 0.2.3
- force device settings to be delivered on start
- enable 'setModelData'
- new 'getDeviceSettings' method to request device settings at any given time
### 0.3.1
- new `send_telemetry` interface for system property support. see README
- update to 'SettingsUpdated' logic. Now individual setting values include '$version'
- new 'setExitOnError' interface provides an option to enable exiting from app on mqtt layer issues.
### 0.3.2
- change isConnected status to false if mqtt rc == 1
- new `setTokenExpiration` interface for manually defining token expiration time
### 0.3.3
- add `getHostName` API
- extend `connect()` with an optional `hostName` arg. => `connect(hostName)`
### 0.3.4
- adding support for changing the QoS value of MQTT publishing events (firedog1024)
### 0.3.5
- fix spacing issue with httplib (lucadruda)

Просмотреть файл

@ -1,17 +1,14 @@
import setuptools
import sys
import semver
sys.path.insert(0, 'src')
from iotc import __name__
with open("README.md", "r") as fh:
long_description = fh.read()
version="1.0.0"
version = "1.0.0"
setuptools.setup(
name=__name__,
name='iotc',
version=version,
author="Luca Druda",
author_email="ludruda@microsoft.com",