configurationengine/source/testautomation/testautomation/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 from setuptools import setup, find_packages
       
    18 
       
    19 setup(
       
    20     name = "cone-tests",
       
    21     version = "1.0",
       
    22     packages = find_packages(),
       
    23     scripts = ['runtests.py'],
       
    24 
       
    25     # Project uses reStructuredText, so ensure that the docutils get
       
    26     # installed or upgraded on the target machine
       
    27     #install_requires = ['zipfile'],
       
    28     #test_suite = "cone.tests.runtests.collect_suite",
       
    29 
       
    30     package_data = {
       
    31         'configproject': ['*.*'],
       
    32     },
       
    33 
       
    34     # metadata for upload to PyPI
       
    35     author = "Teemu Rytkonen",
       
    36     author_email = "teemu.rytkonen@nokia.com",
       
    37     description = "Configuration Engine test module",
       
    38     license = "Symbian Foundation License v1.0",
       
    39     keywords = "cone test",
       
    40     url = "http://developer.symbian.org/wiki/index.php/Software_Configuration_Middleware",
       
    41 
       
    42     # could also include long_description, download_url, classifiers, etc.
       
    43 )