Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing setup.py for jetson #1135

Merged
merged 2 commits into from
Jul 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 6 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def package_files(directory, strip_leading):
long_description = fh.read()

setup(name='donkeycar',
version="5.0.dev2",
version="5.0.dev3",
long_description=long_description,
description='Self driving library for python.',
url='https://github.com/autorope/donkeycar',
Expand Down Expand Up @@ -53,7 +53,8 @@ def package_files(directory, strip_leading):
"pynmea2",
'pyserial',
"utm",
'pandas'
'pandas',
'pyyaml',
],
extras_require={
# if installing into a conda (i.e. miniforge) env on Pi we have to
Expand All @@ -71,27 +72,21 @@ def package_files(directory, strip_leading):
'adafruit-circuitpython-ssd1306',
'adafruit-circuitpython-rplidar',
'Jetson.GPIO',
'albumentations',
'matplotlib',
'kivy-jetson',
'pyyaml',
'plotly'
],
'nano': [
'Adafruit_PCA9685',
'adafruit-circuitpython-ssd1306',
'adafruit-circuitpython-rplidar',
'Jetson.GPIO',
'matplotlib',
'kivy',
'pyyaml',
'kivy-jetson',
'plotly'
],
'pc': [
'matplotlib',
'kivy',
'pandas',
'pyyaml',
'plotly',
'albumentations'
],
Expand Down Expand Up @@ -128,8 +123,8 @@ def package_files(directory, strip_leading):
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='selfdriving cars donkeycar diyrobocars',
packages=find_packages(exclude=(['tests', 'docs', 'site', 'env'])),
Expand Down