0
|
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 |
from cone import __version__
|
|
22 |
|
|
23 |
setup(
|
|
24 |
name = "cone",
|
|
25 |
version = __version__,
|
3
|
26 |
packages = find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests", "scripts"]),
|
0
|
27 |
package_data = {'cone.validation': ['confml_xsd/*.xsd', 'implml_xsd/*.xsd']},
|
|
28 |
install_requires = ['Jinja2>=2.1.1', 'simplejson>=2.0.9', 'lxml>=2.2.2'], #FIX THIS: not to try load cone from web
|
|
29 |
|
|
30 |
|
|
31 |
# Project uses reStructuredText, so ensure that the docutils get
|
|
32 |
# installed or upgraded on the target machine
|
|
33 |
#install_requires = ['zipfile'],
|
|
34 |
test_suite = "cone.tests.runtests.collect_suite",
|
|
35 |
# metadata for upload to PyPI
|
|
36 |
author = "Teemu Rytkonen",
|
|
37 |
author_email = "teemu.rytkonen@nokia.com",
|
|
38 |
description = "Configuration Engine",
|
|
39 |
license = "Eclipse Public License v1.0",
|
|
40 |
keywords = "cone",
|
|
41 |
url = "http://developer.symbian.org/wiki/index.php/Software_Configuration_Middleware",
|
|
42 |
zip_safe = True
|
|
43 |
)
|