1
0
mirror of https://github.com/cmur2/python-bme280.git synced 2026-04-03 22:18:31 +02:00
This commit is contained in:
cn
2016-05-30 22:13:05 +02:00
parent 1750cff8b3
commit d6d215d1f9
6 changed files with 305 additions and 0 deletions

11
setup.py Normal file
View File

@@ -0,0 +1,11 @@
from setuptools import setup
setup(name='bme280',
version='1.0',
url='http://github.com/cmur2/python-bme280',
author='Christian Nicolai',
description='A python library for accessing the BME280 combined humidity and pressure sensor from Bosch.',
packages=['bme280'],
long_description=open('README.md').read(),
requires=['python (>= 2.7)', 'smbus (>= 0.4.1)'],
install_requires=['smbus-cffi'])