python-bme280/setup.py

12 lines
438 B
Python
Raw Normal View History

2016-05-30 22:13:05 +02:00
from setuptools import setup
setup(name='bme280',
version='1.0',
2018-03-14 23:26:57 +01:00
url='https://github.com/cmur2/python-bme280',
2016-05-30 22:13:05 +02:00
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)'],
2019-12-13 20:41:07 +01:00
install_requires=['smbus2'])