~hardware-certification/checkbox-desktop/trunk

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
#!/usr/bin/env python

from glob import glob
from distutils.core import setup
from ConfigParser import ConfigParser

config = ConfigParser()
config.read("examples/hwtest-desktop.conf")


setup(
    name = 'hwtest-desktop',
    version = config.defaults()["version"],
    author = 'Marc Tardif',
    author_email = 'marc.tardif@canonical.com',
    license = 'GPL',
    description = 'Desktop Testing',
    long_description = '''
This project provides an interface for gathering hardware details
and running automated questions. This information can then be sent
to the Canonical Hardware Certification website.
''',
    data_files=[
        ('share/hwtest-desktop/plugins/', glob('plugins/*.py')),
        ('share/hwtest-desktop/registries/', glob('registries/*.py')),
        ('share/hwtest-desktop/questions/', glob('questions/*')),
        ('share/hwtest-desktop/scripts/', glob('scripts/*'))]
)