-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
29 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
) |