forked from eficode/robotframework-imagehorizonlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (36 loc) · 1.46 KB
/
Copy pathsetup.py
File metadata and controls
44 lines (36 loc) · 1.46 KB
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
from os.path import abspath, dirname, join as path_join
from setuptools import setup, find_packages
from src.ImageLibrary.version import VERSION
SETUPDIR = abspath(dirname(__file__))
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(SETUPDIR, 'README.rst'), 'r') as readme:
LONG_DESCRIPTION = readme.read()
with open(path_join(SETUPDIR, 'requirements.txt')) as f:
REQUIREMENTS = f.read().splitlines()
CLASSIFIERS = '''
Development Status :: 5 - Production/Stable
Programming Language :: Python :: 3 :: Only
Operating System :: OS Independent
Framework :: Robot Framework
Framework :: Robot Framework :: Library
Topic :: Software Development :: Testing
License :: OSI Approved :: MIT License
'''.strip().splitlines()
setup(name='robotframework-ImageLibrary',
author='Eficode Oy',
author_email='info@eficode.com',
url='https://github.com/Eficode/robotframework-ImageLibrary',
license='MIT',
platforms='any',
packages=find_packages('src'),
package_dir={'ImageLibrary': 'src/ImageLibrary'},
install_requires = REQUIREMENTS,
keywords=KEYWORDS,
classifiers=CLASSIFIERS,
version=VERSION,
description=SHORT_DESC,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION)