-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
46 lines (39 loc) · 1.47 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
# -*- coding: utf-8 -*-
from os.path import abspath, dirname, join as path_join
from setuptools import setup
CURDIR = abspath(dirname(__file__))
# get VERSION number
exec(compile(open('src/ImageHorizonLibrary/version.py', "rb").read(), 'src/ImageHorizonLibrary/version.py', 'exec'))
KEYWORDS = ('imagerecognition gui robotframework testing testautomation '
'acceptancetesting atdd bdd')
SHORT_DESC = ('Cross-platform Robot Framework library for GUI automation '
'based on image recognition')
with open(path_join(CURDIR, 'README.rst'), 'r') as readme:
LONG_DESCRIPTION = readme.read()
CLASSIFIERS = '''
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3 :: Only
Operating System :: OS Independent
Topic :: Software Development :: Testing
License :: OSI Approved :: MIT License
'''.strip().splitlines()
setup(name='robotframework-imagehorizonlibrary',
author='Eficode Oy',
author_email='[email protected]',
url='https://github.com/Eficode/robotframework-imagehorizonlibrary',
license='MIT',
install_requires=[
'robotframework>=2.8',
'pyautogui>=0.9.30'
],
packages=[
'ImageHorizonLibrary',
'ImageHorizonLibrary.interaction',
'ImageHorizonLibrary.recognition',
],
package_dir={'': 'src'},
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
version=VERSION,
description=SHORT_DESC,
long_description=LONG_DESCRIPTION)