~mwhudson/lava-scheduler-tool/trunk

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Michael-Doyle Hudson
  • Date: 2011-08-19 04:31:14 UTC
  • mfrom: (7 lava-scheduler-tool)
  • mto: This revision was merged to the branch mainline in revision 8.
  • Revision ID: michael.hudson@linaro.org-20110819043114-s3ez441bza64sgic
merge trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
 
2
#
 
3
# Copyright (C) 2010, 2011 Linaro Limited
 
4
#
 
5
# Author: Michael Hudson-Doyle <michael.hudson@linaro.org>
 
6
#
 
7
# This file is part of lava-scheduler-tool.
 
8
#
 
9
# lava-scheduler-tool is free software: you can redistribute it and/or modify
 
10
# it under the terms of the GNU Lesser General Public License version 3
 
11
# as published by the Free Software Foundation
 
12
#
 
13
# lava-scheduler-tool is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU Lesser General Public License
 
19
# along with lava-scheduler-tool.  If not, see <http://www.gnu.org/licenses/>.
2
20
 
3
21
from setuptools import setup, find_packages
4
 
import versiontools
5
 
import lava_scheduler_tool
6
22
 
7
23
 
8
24
setup(
9
25
    name = 'lava-scheduler-tool',
10
 
    version = versiontools.format_version(lava_scheduler_tool.__version__),
11
 
    author = "Michael Hudson-Doyle",
12
 
    author_email = "zygmunt.krynicki@linaro.org",
 
26
    version = ":versiontools:lava_scheduler_tool:__version__",
 
27
    author = "Linaro Validation Team",
 
28
    author_email = "linaro-dev@lists.linaro.org",
13
29
    packages = find_packages(),
14
30
    description = "Command line utility for the LAVA scheduler",
15
31
    url='https://launchpad.net/lava-scheduler-tool',
26
42
        "License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
27
43
        "Operating System :: OS Independent",
28
44
        "Programming Language :: Python :: 2.6",
 
45
        "Programming Language :: Python :: 2.7",
29
46
        "Topic :: Software Development :: Testing",
30
47
    ],
31
 
    install_requires = [
32
 
        'versiontools >= 1.1',
33
 
        'lava-tool'
34
 
    ],
35
 
    setup_requires = [
36
 
        'versiontools >= 1.1',
37
 
    ],
38
 
    tests_require = [
39
 
    ],
 
48
    install_requires = ['lava-tool >= 0.1'],
 
49
    setup_requires = ['versiontools >= 1.3.1'],
40
50
    zip_safe = True,
41
51
)