python-veml6070/setup.py

14 lines
422 B
Python
Raw Normal View History

2016-05-29 23:13:04 +02:00
from setuptools import setup
setup(name='veml6070',
2019-12-18 19:44:10 +01:00
version='1.0.0',
packages=['veml6070'],
install_requires=['smbus2'],
python_requires='>=2.7',
url='https://dev.mycrobase.de/gitea/cn/python-veml6070',
2016-05-29 23:13:04 +02:00
author='Christian Nicolai',
description=' A python library for accessing the VEML6070 digital UV light sensor from Vishay.',
2019-12-18 19:44:10 +01:00
long_description=open('README.md').read())