blob: f96c2e5786baf3fcd68ac63d05582002d346c874 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from setuptools import setup
setup(name='pixtendlibv2',
version='0.1.1',
description='Python module for PiXtend V2 boards.',
url='http://www.pixtend.de',
author='Qube Solutions UG',
author_email='info@pixtend.de',
license='GPLv3 Open Source License',
packages=['pixtendv2core', 'pixtendv2s'],
zip_safe=False, install_requires=['spidev', 'RPi.GPIO'])
|