forked from uglide/RocketPilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·53 lines (47 loc) · 1.54 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
#!/usr/bin/env python3
#
# Rocketpilot Functional Test Tool
# Copyright (C) 2017 Igor Malinovskiy
# Copyright (C) 2012-2014 Canonical
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
from setuptools import find_packages, setup
import sys
assert sys.version_info >= (3,), 'Python 3 is required'
VERSION = '0.2.0'
setup(
name='rocketpilot',
version=VERSION,
description='Cross-platform tool for functional GUI testing of Qt applications '
'based on Cannonical Autopilot project.',
author='Igor Malinovskiy',
author_email='[email protected]',
url='https://github.com/uglide/RocketPilot',
license='GPLv3',
install_requires=[
'decorator==4.2.1',
'psutil',
'testtools',
'dbus-python',
'PyUserInput',
'pytz',
'python-dateutil',
],
packages=find_packages(),
ext_modules=[],
entry_points={
'console_scripts': ['rocketpilot-vis = rocketpilot.vis:vis_main']
}
)