Repository URL to install this package:
|
Version:
2.1.1 ▾
|
#!/usr/bin/python #!/usr/bin/env python
#
# BakeBit Python Setup
#
# The BakeBit connects the NanoPi NEO and BakeBit sensors. You can learn more about BakeBit here: http://wiki.friendlyarm.com/BakeBit
#
# Have a question about this example? Ask on the forums here: http://www.friendlyarm.com/Forum/
#
'''
## License
The MIT License (MIT)
BakeBit: an open source platform for connecting BakeBit Sensors to the NanoPi NEO.
Copyright (C) 2016 FriendlyARM
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
'''
# To install the BakeBit library systemwide, use: sudo python setup.py install
import setuptools
setuptools.setup(
name="bakebit",
description="Drivers and examples for using the BakeBit in Python",
author="FriendlyARM",
url="http://wiki.friendlyarm.com/bakebit",
py_modules=['bakebit'],
# install_requires=open('requirements.txt').readlines(),
)