1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/usr/bin/env python
# Copyright (C) 2011-2012 Linaro Limited
#
# Author: Zygmunt Krynicki <zygmunt.krynicki@linaro.org>
#
# This file is part of lava-core
#
# lava-core is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License version 3
# as published by the Free Software Foundation
#
# lava-core is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with lava-core. If not, see <http://www.gnu.org/licenses/>.
from setuptools import setup, find_packages
import versiontools_support
setup(
name='lava-core',
version=":versiontools:lava.core:__version__",
author="Zygmunt Krynicki",
author_email="zygmunt.krynicki@linaro.org",
namespace_packages=['lava', 'lava.utils'],
packages=find_packages(),
description="Monolithic core for LAVA",
long_description=open("README").read(),
url='https://launchpad.net/lava-core',
license="LGPLv3, GPLv3",
test_suite="unittest2.collector",
entry_points="""
[console_scripts]
lava-dev = lava.core.main:LavaDispatcher.run
""",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
("License :: OSI Approved :: GNU Library or Lesser General Public"
" License (LGPL)"),
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development :: Testing",
],
extras_require={},
install_requires=[
'argparse >= 1.1',
'json-document >= 0.8',
'json-schema-validator',
'simplejson',
],
tests_require=[
'unittest2',
'mocker',
],
zip_safe=True)
|