python-bme280/setup.py

14 lines
426 B
Python
Raw Normal View History

2016-05-30 22:13:05 +02:00
from setuptools import setup
setup(name='bme280',
version='1.0.0',
packages=['bme280'],
install_requires=['smbus2'],
python_requires='>=2.7',
url='https://dev.mycrobase.de/gitea/cn/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.',
long_description=open('README.md').read())