############################################################################### # Copyright (c) 2011 Linaro # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html ############################################################################### from setuptools import setup, find_packages setup( name="linaro_android_build", version="0.0.1", url='XXX', license='XXX', description="XXX", author='Michael Hudson-Doyle', packages=find_packages(), scripts = [ ], entry_points = { 'console_scripts': [ 'manage = manage:run', ], }, )