-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
24 lines (23 loc) · 1020 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name="rpimotorlib",
version="3.3",
author="Gavin Lyons",
author_email="glyons66@hotmail.com",
description="A python 3 library for various motors and servos to connect to a raspberry pi",
long_description="""# python 3 library\n for various motors and servos\n to connect to a raspberry pi\n""",
long_description_content_type="text/markdown",
license="GPL",
keywords="MC1508 TB6612FNG L9110S DRV8833 A3967 L298 servo motor library raspberry pi 28BYJ-48 A4988 stepper DRV8825",
url="https://github.com/gavinlyonsrepo/RpiMotorLib",
download_url='https://github.com/gavinlyonsrepo/RpiMotorLib/archive/3.3.tar.gz',
packages=['RpiMotorLib'],
data_files=[('', ['README.md'])],
install_requires=['pip'],
setup_requires=['pip'],
scripts=['RpiMotorLib/RpiMotorScriptLib.py'],
classifiers=[
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)