Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
dimschlukas committed Jul 19, 2019
1 parent 2a9147f commit 045e193
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions rpi_python_drv8825/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from rpi_python_drv8825.stepper import StepperMotor
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
setup(
name = 'rpi_python_drv8825',
packages = ['rpi_python_drv8825'],
version = '0.2',
version = '0.3',
license='gpl-3.0',
description = 'Python library to controll a stepper motor with a DRV8825 driver connected to a Raspberry Pi',
author = 'Lukas Schmid',
author_email = '[email protected]',
url = 'https://github.com/dimschlukas/rpi_python_drv8825',
download_url = 'https://github.com/dimschlukas/rpi_python_drv8825/archive/v0.2-alpha.tar.gz',
download_url = 'https://github.com/dimschlukas/rpi_python_drv8825/archive/v0.3-alpha.tar.gz',
keywords = ['drv8825', 'control', 'steppermotor', 'stepper', 'motor', 'Raspberry', 'Pi'],
install_requires=[
'RPi.GPIO',
Expand All @@ -17,7 +17,8 @@
'Development Status :: 3 - Alpha', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: gpl-3.0 License',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)'
'Programming Language :: Python'
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
Expand Down

0 comments on commit 045e193

Please sign in to comment.