Motoron Motor Controller library for Raspberry Pi
Loading...
Searching...
No Matches
setup.py
1from distutils.core import setup
2setup(name='motoron',
3 version='2.0.0',
4 description=(
5 'Motoron Motor Controller Python library for Raspberry Pi'
6 ),
7 url='https://github.com/pololu/motoron-python',
8 py_modules=['motoron', 'motoron_protocol'],
9 )
10
Definition: setup.py:1