mpdot/setup.py
changeset 2 932c358ece3e
child 4 468f4c8d3d5b
equal deleted inserted replaced
1:82f11024044a 2:932c358ece3e
       
     1 # Copyright (c) 2007-2010 Nokia Corporation and/or its subsidiary(-ies) All rights reserved.
       
     2 # This component and the accompanying materials are made available under the terms of the License 
       
     3 # "Eclipse Public License v1.0" which accompanies this distribution, 
       
     4 # and is available at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     5 #
       
     6 # Initial Contributors:
       
     7 # Nokia Corporation - initial contribution.
       
     8 #
       
     9 # Contributors:
       
    10 # System Documentation Tools
       
    11 # Description:
       
    12 #
       
    13 from distutils.core import setup
       
    14 try:
       
    15     import py2exe
       
    16 except ImportError:
       
    17     pass
       
    18 
       
    19 setup(name = 'DITA OT Support',
       
    20       version='0.1.1',      
       
    21       description = 'Support for the DITA Open Toolkit',
       
    22       author = 'Nokia sysdoc tools team',
       
    23       license='EPL',
       
    24       console=[
       
    25                'mpdot.py',
       
    26                'linkcheck.py',
       
    27                ],
       
    28       options={"py2exe":
       
    29                     {'packages':['xml.etree', 'gzip']}
       
    30                }
       
    31 )