Skip to content

Commit

Permalink
fix manifest to include all html js and css files
Browse files Browse the repository at this point in the history
  • Loading branch information
wroscoe committed May 29, 2018
1 parent 83512dc commit b096528
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 57 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
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/ *
2 changes: 1 addition & 1 deletion donkeycar/__init__.py
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__))

Expand Down
111 changes: 56 additions & 55 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand All @@ -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'])),
)

0 comments on commit b096528

Please sign in to comment.