mirror of
https://github.com/cmur2/python-bme280.git
synced 2024-12-21 16:54:22 +01:00
module: align setup.py with current setuptools
This commit is contained in:
parent
07fa697034
commit
c88514dfa6
14
setup.py
14
setup.py
@ -1,11 +1,13 @@
|
||||
from setuptools import setup
|
||||
|
||||
setup(name='bme280',
|
||||
version='1.0',
|
||||
url='https://github.com/cmur2/python-bme280',
|
||||
version='1.0.0',
|
||||
packages=['bme280'],
|
||||
|
||||
install_requires=['smbus2'],
|
||||
python_requires='>=2.7',
|
||||
|
||||
url='https://dev.mycrobase.de/gitea/cn/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=['smbus2'])
|
||||
long_description=open('README.md').read())
|
||||
|
Loading…
Reference in New Issue
Block a user