8 lines
218 B
Python
8 lines
218 B
Python
|
from distutils.core import setup
|
||
|
setup(name='CO2Meter',
|
||
|
version='2.1',
|
||
|
py_modules=['CO2Meter'],
|
||
|
url='https://github.com/heinemml/CO2Meter',
|
||
|
description='Library to access USB CO2Meters'
|
||
|
)
|