Orb/bin/MapCreator/setup.py
author szarinda <>
Thu, 21 Jan 2010 17:29:01 +0000
changeset 0 42188c7ea2d9
permissions -rw-r--r--
Initial contribution of ORB delivering Feature bug 1460

# Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies) All rights reserved.
# This component and the accompanying materials are made available under the terms of the License 
# "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:
# System Documentation Tools
# Description:
#
import lxml
from distutils.core import setup
try:
    import py2exe
except ImportError:
    pass
# To get around py2exe strangeness
import sys; sys.path.append("mapcreator")


setup(name = 'mapcreator',
      version='0.1',      
      description = 'mapcreator tool',
      author = 'Nokia sysdoc tools team',
      license='EPL',
      packages=['mapcreator'],
      console=['mapcreator/mapcreator.py'],
      options={"py2exe":
                    {'packages':['lxml', 'gzip']}
               }
)