-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix manifest to include all html js and css files
- Loading branch information
Showing
3 changed files
with
58 additions
and
57 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
include donkeycar/templates/* | ||
recursive-include donkeycar/parts/web_controller/templates/ *.html *.js *.css | ||
recursive-include donkeycar/parts/web_controller/templates/ * |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = '2.2.3' | ||
__version__ = '2.2.4' | ||
|
||
print('using donkey v{} ...'.format(__version__)) | ||
|
||
|
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,7 +2,8 @@ | |
|
||
import os | ||
|
||
#include the non python files | ||
|
||
# include the non python files | ||
def package_files(directory, strip_leading): | ||
paths = [] | ||
for (path, directories, filenames) in os.walk(directory): | ||
|
@@ -13,65 +14,65 @@ def package_files(directory, strip_leading): | |
|
||
|
||
setup(name='donkeycar', | ||
version='2.2.3', | ||
description='Self driving library for python.', | ||
url='https://github.com/wroscoe/donkey', | ||
download_url='https://github.com/wroscoe/donkey/archive/2.1.5.tar.gz', | ||
author='Will Roscoe', | ||
author_email='[email protected]', | ||
license='MIT', | ||
entry_points={ | ||
'console_scripts': [ | ||
'donkey=donkeycar.management.base:execute_from_command_line', | ||
], | ||
}, | ||
install_requires=['numpy', | ||
'pillow', | ||
'docopt', | ||
'tornado==4.5.3', | ||
'requests', | ||
'keras==2.0.8', | ||
'h5py', | ||
'python-socketio', | ||
'flask', | ||
'eventlet', | ||
'moviepy', | ||
'pandas', | ||
'tensorflow>=1.1' | ||
], | ||
|
||
extras_require={ | ||
'pi': [ | ||
'picamera', | ||
'Adafruit_PCA9685', | ||
version='2.2.4', | ||
description='Self driving library for python.', | ||
url='https://github.com/wroscoe/donkey', | ||
download_url='https://github.com/wroscoe/donkey/archive/2.1.5.tar.gz', | ||
author='Will Roscoe', | ||
author_email='[email protected]', | ||
license='MIT', | ||
entry_points={ | ||
'console_scripts': [ | ||
'donkey=donkeycar.management.base:execute_from_command_line', | ||
], | ||
}, | ||
install_requires=['numpy', | ||
'pillow', | ||
'docopt', | ||
'tornado==4.5.3', | ||
'requests', | ||
'keras==2.0.8', | ||
'h5py', | ||
'python-socketio', | ||
'flask', | ||
'eventlet', | ||
'moviepy', | ||
'pandas', | ||
'tensorflow>=1.1' | ||
], | ||
'dev': ['pytest'] | ||
}, | ||
|
||
include_package_data=True, | ||
extras_require={ | ||
'pi': [ | ||
'picamera', | ||
'Adafruit_PCA9685', | ||
], | ||
'dev': ['pytest'] | ||
}, | ||
|
||
include_package_data=True, | ||
|
||
classifiers=[ | ||
# How mature is this project? Common values are | ||
# 3 - Alpha | ||
# 4 - Beta | ||
# 5 - Production/Stable | ||
'Development Status :: 3 - Alpha', | ||
classifiers=[ | ||
# How mature is this project? Common values are | ||
# 3 - Alpha | ||
# 4 - Beta | ||
# 5 - Production/Stable | ||
'Development Status :: 3 - Alpha', | ||
|
||
# Indicate who your project is intended for | ||
'Intended Audience :: Developers', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
# Indicate who your project is intended for | ||
'Intended Audience :: Developers', | ||
'Topic :: Scientific/Engineering :: Artificial Intelligence', | ||
|
||
# Pick your license as you wish (should match "license" above) | ||
'License :: OSI Approved :: MIT License', | ||
# Pick your license as you wish (should match "license" above) | ||
'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. | ||
# 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.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
keywords='selfdriving cars drive', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
], | ||
keywords='selfdriving cars donkeycar diyrobocars', | ||
|
||
packages=find_packages(exclude=(['tests', 'docs', 'site', 'env'])), | ||
) | ||
packages=find_packages(exclude=(['tests', 'docs', 'site', 'env'])), | ||
) |