configurationengine/source/plugins/common/ConeContentPlugin/setup.py
author terytkon
Thu, 11 Mar 2010 17:04:37 +0200
changeset 0 2e8eeb919028
child 3 e7e0ae78773e
permissions -rw-r--r--
Adding EPL version of configurationengine.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     1
#
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     2
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     3
# All rights reserved.
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     4
# This component and the accompanying materials are made available
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     5
# under the terms of "Eclipse Public License v1.0"
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     6
# which accompanies this distribution, and is available
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     7
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     8
#
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
     9
# Initial Contributors:
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    10
# Nokia Corporation - initial contribution.
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    11
#
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    12
# Contributors:
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    13
#
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    14
# Description: 
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    15
#
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    16
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    17
import os, os.path
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    18
from setuptools import setup, find_packages
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    19
from contentplugin import __version__
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    20
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    21
setup(
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    22
    name = "conecontentplugin",
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    23
    version = __version__,
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    24
    packages = find_packages(exclude=["*.tests"]),
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    25
    test_suite = "contentplugin.tests.collect_suite",
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    26
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    27
    # metadata for upload to PyPI
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    28
    author = "Teemu Rytkonen",
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    29
    author_email = "teemu.rytkonen@nokia.com",
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    30
    description = "Configuration Engine Content copier plugin",
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    31
    license = "Eclipse Public License v1.0",
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    32
    keywords = "cone",
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    33
    url = "http://developer.symbian.org/wiki/index.php/Software_Configuration_Middleware",   # project home page, if any
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    34
    zip_safe = True,
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    35
    
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    36
    # entrypoint info
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    37
    entry_points={'cone.plugins.implmlreaders': ['contentml_1 = contentplugin.contentml:ContentImplReader1',
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    38
                                                 'contentml_2 = contentplugin.contentml:ContentImplReader2']}
2e8eeb919028 Adding EPL version of configurationengine.
terytkon
parents:
diff changeset
    39
)