Skip to content

Commit

Permalink
Bump v1.5 -> v1.6
Browse files Browse the repository at this point in the history
- Add MQTT publishing feature
  • Loading branch information
shantanoo-desai committed Mar 2, 2020
1 parent db20587 commit bf68a49
Showing 1 changed file with 29 additions and 26 deletions.
55 changes: 29 additions & 26 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
from setuptools import setup

def readme():
with open('README.md') as f:
return f.read()


setup(name='bnoflux',
version=1.5,
description='Extract IMU Values from BNO055 and store them in InfluxDB via UDP',
long_description=readme(),
url='https://github.com/shantanoo-desai/bnoflux',
author='Shantanoo Desai',
author_email='[email protected]',
license='MIT',
packages=['bnoflux'],
scripts=[
'bin/bnoflux',
'bin/calibrate'
],
install_requires=[
'influxdb'
],
include_data_package=True,
zip_safe=False
)
from setuptools import setup


def readme():
with open('README.md') as f:
return f.read()


setup(
name='bnoflux',
version=1.6,
description='Extract IMU Values from BNO055 and store them in InfluxDB via UDP and publish via MQTT',
long_description=readme(),
url='https://github.com/shantanoo-desai/bnoflux',
author='Shantanoo Desai',
author_email='[email protected]',
license='MIT',
packages=['bnoflux'],
scripts=[
'bin/bnoflux',
'bin/calibrate'
],
install_requires=[
'influxdb',
'paho-mqtt'
],
include_data_package=True,
zip_safe=False
)

0 comments on commit bf68a49

Please sign in to comment.