1
0
mirror of https://github.com/cmur2/python-veml6070.git synced 2026-06-25 02:39:55 +02:00
This commit is contained in:
cn
2016-05-29 23:13:04 +02:00
parent 831fbc9d7a
commit 8cfb2541b9
6 changed files with 149 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
from setuptools import setup
setup(name='veml6070',
version='1.0',
url='http://github.com/cmur2/python-veml6070',
author='Christian Nicolai',
description=' A python library for accessing the VEML6070 digital UV light sensor from Vishay.',
packages=['veml6070'],
long_description=open('README.md').read(),
requires=['python (>= 2.7)', 'smbus (>= 0.4.1)'],
install_requires=['smbus-cffi'])