port python2.x code to python3.x
[tools/itest-core.git] / setup.py
1 #!/usr/bin/env python3
2 from setuptools import setup
3
4 from itest import __version__
5
6 setup(name='itest',
7       version=__version__,
8       description='Functional test framework',
9       long_description='Functional test framework',
10       author='Hui Wang, Yigang Wen, Daiwei Yang, Hao Huang, Junchun Guan',
11       author_email='huix.wang@intel.com, yigangx.wen@intel.com, '
12       'dawei.yang@intel.com, hao.h.huang@intel.com, junchunx.guan@intel.com',
13       license='GPLv2',
14       platforms=['Linux'],
15       include_package_data=True,
16       packages=['itest', 'itest.conf', 'imgdiff', 'spm', 'nosexcase'],
17       package_data={'': ['*.html']},
18       data_files=[('/etc', ['spm/spm.yml'])],
19       entry_points={
20           'nose.plugins.0.10': [
21               'xcase = nosexcase.xcase:XCase'
22               ]
23           },
24       scripts=[
25           'scripts/runtest',
26           'scripts/runtest_pty',
27           'scripts/imgdiff',
28           'scripts/spm',
29           ],
30       )