diff -r 9435b9008a58 -r 934f9131337b releasing/blocks/framework/setup_symbian.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/releasing/blocks/framework/setup_symbian.py Thu Sep 02 15:02:14 2010 +0800 @@ -0,0 +1,28 @@ +#!/usr/bin/env python + +# +# Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). +# All rights reserved. +# This component and the accompanying materials are made available +# under the terms of "Eclipse Public License v1.0" +# which accompanies this distribution, and is available +# at the URL "http://www.eclipse.org/legal/epl-v10.html". +# +# Initial Contributors: +# Nokia Corporation - initial contribution. +# +# Contributors: +# +# Description: +# Setup for symbian utilities +# + +from setuptools import setup + +setup(name='SymbianUtils', + package_dir={'SymbianUtils': 'src/SymbianUtils'}, + version=file("symbian-version").read().strip(), + description='Utilities for packaging software', + packages=['SymbianUtils' ], + package_data={'SymbianUtils': ['bin/*.exe']} +)