-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2a9147f
commit 045e193
Showing
2 changed files
with
5 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from rpi_python_drv8825.stepper import StepperMotor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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', | ||
|
@@ -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', | ||
|