aboutsummaryrefslogtreecommitdiff
path: root/setup.py
blob: 6121569efdb3afe80a6df42effa04f9a62491d41 (plain)
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
###############################################################################
# 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',
        ],
    },
)