forked from eeejay/ldtp2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 1.42 KB
/
setup.py
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
#!/usr/bin/env python
from distutils.core import setup
setup(name='ldtp',
version='2.0.5',
description='Linux Desktop Testing Project Version 2',
maintainer='Nagappan Alagappan',
maintainer_email='[email protected]',
url='http://ldtp.freesktop.org',
license="GNU Lesser General Public License (LGPL)",
packages=['ldtp', 'ldtpd', 'ooldtp', 'ldtputils'],
long_description='Linux Desktop Testing Project is aimed at producing ' \
'high quality test automation framework and cutting-edge tools that ' \
'can be used to test GNU/Linux Desktop and improve it. It uses the ' \
'Accessibility libraries to poke through the applications user ' \
'interface. LDTP is a Linux / Unix GUI application testing tool. ' \
'It runs on Linux / Solaris / FreeBSD / Embedded environment (Palm Source).',
scripts=['scripts/ldtp'],
classifiers=[
'Development Status :: 5 - Production',
'Environment :: X11 Applications :: GTK',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License (LGPL)',
'Operating System :: POSIX :: Linux',
'Operating System :: POSIX :: Solaris',
'Operating System :: POSIX :: FreeBSD',
'Programming Language :: Python',
'Topic :: Desktop Environment',
]
)