mirror of
https://github.com/cmur2/python-veml6070.git
synced 2024-11-01 00:56:15 +01:00
11 lines
436 B
Python
11 lines
436 B
Python
|
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'])
|