-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
55 lines (48 loc) · 2.25 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
53
54
55
#!/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-13 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 setuptools import setup
setup(name="ldtp",
version="3.5.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)",
install_requires=["twisted"],
packages=["ldtp", "ldtpd", "ooldtp", "ldtputils", "ldtpme"],
long_description="Linux Desktop Testing Project is aimed at producing " \
"high quality cross platform GUI test automation framework and cutting-edge tools that " \
"can be used to test GNU/Linux/Windows/Mac 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 / Windows / Mac OSX / 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",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python",
"Topic :: Desktop Environment",
],
)