configurationengine/source/scripts/setup.py
changeset 0 2e8eeb919028
child 3 e7e0ae78773e
equal deleted inserted replaced
-1:000000000000 0:2e8eeb919028
       
     1 #
       
     2 # Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 # All rights reserved.
       
     4 # This component and the accompanying materials are made available
       
     5 # under the terms of "Eclipse Public License v1.0"
       
     6 # which accompanies this distribution, and is available
       
     7 # at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 #
       
     9 # Initial Contributors:
       
    10 # Nokia Corporation - initial contribution.
       
    11 #
       
    12 # Contributors:
       
    13 #
       
    14 # Description: 
       
    15 #
       
    16 
       
    17 import os, os.path
       
    18 from pkg_resources import require
       
    19 require("setuptools")
       
    20 from setuptools import setup, find_packages
       
    21 
       
    22 datafiles = ['gen_report_template.html',
       
    23              'cone_defaults.cfg',
       
    24              'conesub_generate.cfg',
       
    25              'imaker_variantdir.cfg',
       
    26              'logging.ini',
       
    27              'cone_base.html',
       
    28              'compare_api_report_template.html',
       
    29              'compare_data_report_template.html',
       
    30              'info_api_report_template.csv',
       
    31              'info_api_report_template.html',
       
    32              'info_impl_report_template.html',
       
    33              'info_content_report_template.html',
       
    34              'info_value_report_template.html',
       
    35              'info_value_report_template.csv',
       
    36              'crml_dc_report_template.csv',
       
    37              'crml_dc_report_template.html']
       
    38 
       
    39 setup(
       
    40     name = "cone-scripts",
       
    41     version = '1.0',
       
    42     scripts = ['cone_tool.py',
       
    43                'cone_common.py',
       
    44                'cone_subaction.py',
       
    45                'conesub_info.py',
       
    46                'conesub_export.py',
       
    47                'conesub_generate.py',
       
    48                'conesub_merge.py',
       
    49                'conesub_compare.py',
       
    50                #'conesub_import_browserbookmarks.py',
       
    51                'conesub_update.py',
       
    52                'conesub_report.py',
       
    53                'generation_report.py',
       
    54                'report_util.py'] + 
       
    55                datafiles,
       
    56 
       
    57     author = "Teemu Rytkonen",
       
    58     author_email = "teemu.rytkonen@nokia.com",
       
    59     description = "Configuration Engine scripts",
       
    60     license = "Eclipse Public License v1.0",
       
    61     keywords = "cone. scripts",
       
    62     url = "http://developer.symbian.org/wiki/index.php/Software_Configuration_Middleware",
       
    63     zip_safe = False
       
    64 )