-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 1.25 KB
/
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
25
26
27
28
29
from setuptools import setup, find_packages
setup(name='donkeypart_sombrero',
version='0.1',
description='Library for donkeycar custom hat, the sombrero.',
long_description="no long description given",
url='https://github.com/autorope/donkeypart_sombrero',
author='Will Roscoe',
author_email='wroscoe@gmail.com',
license='MIT',
#NOTE: The url install method works in the recent version of pip but will not work if moved to pypi.
install_requires=['numpy',
'gpiozero',
'RPi.GPIO',
'donkeypart_PCA9685_actuators@ https://github.com/autorope/donkeypart_PCA9685_actuators/archive/0.1.2.zip'
],
extras_require={'dev': ['pytest-cov']},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords='selfdriving cars donkeycar diyrobocars datastore',
packages=find_packages(exclude=(['tests', 'docs', 'site', 'env'])),
)