-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (28 loc) · 1.2 KB
/
Copy pathsetup.py
File metadata and controls
28 lines (28 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from distutils.core import setup
setup(
name = 'rpi_python_drv8825',
packages = ['rpi_python_drv8825'],
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 = 'dimschlukas@gmail.com',
url = 'https://github.com/dimschlukas/rpi_python_drv8825',
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',
],
classifiers=[
'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 :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)