forked from eeejay/ldtp2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (45 loc) · 2.06 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
"""
LDTP v2 Core.
@author: Eitan Isaacson <[email protected]>
@author: Nagappan Alagappan <[email protected]>
@copyright: Copyright (c) 2009 Eitan Isaacson
@copyright: Copyright (c) 2009-12 Nagappan Alagappan
@license: LGPL
http://ldtp.freedesktop.org
This file may be distributed and/or modified under the terms of the GNU Lesser General
Public License version 2 as published by the Free Software Foundation. This file
is distributed without any warranty; without even the implied warranty of
merchantability or fitness for a particular purpose.
See 'COPYING' in the source distribution for more information.
Headers in this file shall remain intact.
"""
from distutils.core import setup
setup(name="ldtp",
version="2.3.1",
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",
]
)