setup.py 5.5 KB
Newer Older
1
#!/bin/env python
2 3
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
4 5
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
6 7 8 9 10 11 12
#
# This program 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 LICENSE for more details.
#
13
# Copyright: Red Hat Inc. 2013-2014
14 15
# Author: Lucas Meneghel Rodrigues <lmr@redhat.com>

16
import glob
17
import os
18
# pylint: disable=E0611
19

20
from setuptools import setup
21

22
from avocado import VERSION
23

24

25
VIRTUAL_ENV = 'VIRTUAL_ENV' in os.environ
C
Cleber Rosa 已提交
26 27


28 29 30 31 32 33 34 35 36 37 38 39 40
def get_dir(system_path=None, virtual_path=None):
    """
    Retrieve VIRTUAL_ENV friendly path
    :param system_path: Relative system path
    :param virtual_path: Overrides system_path for virtual_env only
    :return: VIRTUAL_ENV friendly path
    """
    if virtual_path is None:
        virtual_path = system_path
    if VIRTUAL_ENV:
        if virtual_path is None:
            virtual_path = []
        return os.path.join(*virtual_path)
41
    else:
42 43 44
        if system_path is None:
            system_path = []
        return os.path.join(*(['/'] + system_path))
45 46


47 48
def get_tests_dir():
    return get_dir(['usr', 'share', 'avocado', 'tests'], ['tests'])
49 50


51 52 53 54 55 56 57 58 59
def get_avocado_libexec_dir():
    if VIRTUAL_ENV:
        return get_dir(['libexec'])
    elif os.path.exists('/usr/libexec'):    # RHEL-like distro
        return get_dir(['usr', 'libexec', 'avocado'])
    else:                                   # Debian-like distro
        return get_dir(['usr', 'lib', 'avocado'])


60
def get_data_files():
61 62
    data_files = [(get_dir(['etc', 'avocado']), ['etc/avocado/avocado.conf'])]
    data_files += [(get_dir(['etc', 'avocado', 'conf.d']),
63
                    ['etc/avocado/conf.d/README', 'etc/avocado/conf.d/gdb.conf'])]
64 65 66
    data_files += [(get_dir(['etc', 'avocado', 'sysinfo']),
                    ['etc/avocado/sysinfo/commands', 'etc/avocado/sysinfo/files',
                     'etc/avocado/sysinfo/profilers'])]
67 68
    data_files += [(get_tests_dir(), glob.glob('examples/tests/*.py'))]
    for data_dir in glob.glob('examples/tests/*.data'):
69
        fmt_str = '%s/*' % data_dir
70
        for f in glob.glob(fmt_str):
71 72 73 74 75 76 77
            data_files += [(os.path.join(get_tests_dir(),
                                         os.path.basename(data_dir)), [f])]
    data_files.append((get_dir(['usr', 'share', 'doc', 'avocado'], ['.']),
                       ['man/avocado.rst', 'man/avocado-rest-client.rst']))
    data_files += [(get_dir(['usr', 'share', 'avocado', 'wrappers'],
                            ['wrappers']),
                    glob.glob('examples/wrappers/*.sh'))]
78 79 80 81 82

    data_files += [(get_dir(['usr', 'share', 'avocado', 'simpletests'],
                            ['simpletests']),
                    glob.glob('examples/simpletests/*.sh'))]

83
    data_files.append((get_avocado_libexec_dir(), glob.glob('libexec/*')))
84 85 86
    return data_files


87 88 89 90 91 92 93 94
def _get_plugin_resource_files(path):
    """
    Given a path, return all the files in there to package
    """
    flist = []
    for root, _, files in sorted(os.walk(path)):
        for name in files:
            fullname = os.path.join(root, name)
95
            flist.append(fullname[len('avocado/core/plugins/'):])
96 97 98
    return flist


99 100 101 102 103
def get_long_description():
    with open('README.rst', 'r') as req:
        req_contents = req.read()
    return req_contents

104 105
if __name__ == '__main__':
    setup(name='avocado',
106
          version=VERSION,
107 108 109 110 111 112 113
          description='Avocado Test Framework',
          long_description=get_long_description(),
          author='Avocado Developers',
          author_email='avocado-devel@redhat.com',
          url='http://avocado-framework.github.io/',
          packages=['avocado',
                    'avocado.core',
114
                    'avocado.core.plugins',
115
                    'avocado.utils',
116
                    'avocado.utils.external',
117
                    'avocado.core.remote',
118 119 120
                    'avocado.core.restclient',
                    'avocado.core.restclient.cli',
                    'avocado.core.restclient.cli.args',
121 122
                    'avocado.core.restclient.cli.actions',
                    'avocado.plugins'],
123
          package_data={'avocado.core.plugins': _get_plugin_resource_files(
124
              'avocado/core/plugins/resources')},
125
          data_files=get_data_files(),
126
          scripts=['scripts/avocado',
127
                   'scripts/avocado-rest-client'],
C
Cleber Rosa 已提交
128
          entry_points={
C
Cleber Rosa 已提交
129 130
              'avocado.plugins.cli': [
                  'gdb = avocado.plugins.gdb:GDB',
C
Cleber Rosa 已提交
131
                  'wrapper = avocado.plugins.wrapper:Wrapper',
C
Cleber Rosa 已提交
132
                  'xunit = avocado.plugins.xunit:XUnit',
C
Cleber Rosa 已提交
133
                  'json = avocado.plugins.json:JSON',
C
Cleber Rosa 已提交
134
                  'journal = avocado.plugins.journal:Journal',
C
Cleber Rosa 已提交
135
                  'html = avocado.plugins.html:HTML',
C
Cleber Rosa 已提交
136
                  ],
C
Cleber Rosa 已提交
137
              'avocado.plugins.cli.cmd': [
C
Cleber Rosa 已提交
138
                  'config = avocado.plugins.config:Config',
C
Cleber Rosa 已提交
139
                  'distro = avocado.plugins.distro:Distro',
C
Cleber Rosa 已提交
140
                  'exec-path = avocado.plugins.exec_path:ExecPath',
C
Cleber Rosa 已提交
141
                  'multiplex = avocado.plugins.multiplex:Multiplex',
C
Cleber Rosa 已提交
142
                  'list = avocado.plugins.list:List',
C
Cleber Rosa 已提交
143
                  'run = avocado.plugins.run:Run',
C
Cleber Rosa 已提交
144
                  'sysinfo = avocado.plugins.sysinfo:SysInfo',
145
                  'plugins = avocado.plugins.plugins:Plugins',
C
Cleber Rosa 已提交
146 147
                  ]
              },
H
Hao Liu 已提交
148
          zip_safe=False,
149
          test_suite='selftests')