i2cdriver/python/setup.py

26 lines
735 B
Python
Raw Normal View History

2019-02-12 03:18:56 +00:00
# coding=utf-8
from setuptools import setup
LONG = """\
I2CDriver is a tool for controlling, monitoring and capturing I2C from your PC's USB port. It connects as a standard USB serial device, so there are no drivers to install."""
for l in open("i2cdriver.py", "rt"):
if l.startswith("__version__"):
exec(l)
setup(name='i2cdriver',
version=__version__,
author='James Bowman',
author_email='jamesb@excamera.com',
url='http://i2cdriver.com',
description='I2CDriver is a desktop I2C interface',
long_description=LONG,
license='GPL',
2019-02-20 14:46:39 +00:00
install_requires=['pyserial'],
py_modules = [
'i2cdriver',
'EDS',
],
scripts=['samples/i2cgui.py'],
2019-02-12 03:18:56 +00:00
)