forked from jessezach/RobotEyes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (28 loc) · 1.12 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
from setuptools import setup, find_packages
import os
version = '0.58'
setup(name='robotframework-eyes',
version=version,
description="Visual regression library and report generator for robot framework",
long_description="""\
Visual regression library and report generator for robot framework. Capture elements, fullscreens and compare them against baseline images. Extends Selenium2Libary. Visit https://github.com/jz-jess/RobotEyes for documentation.""",
classifiers=[
'Framework :: Robot Framework',
'Programming Language :: Python',
'Topic :: Software Development :: Testing',
],
keywords='visual-regression image-comparison robotframework robot-eyes',
author='Jesse Zacharias',
author_email='[email protected]',
url='https://github.com/jz-jess/RobotEyes',
scripts=[os.path.join('scripts', 'reportgen')],
license='Apache License 2.0',
packages=find_packages(),
include_package_data=True,
zip_safe=True,
install_requires=[
'pillow',
'robotframework',
'robotframework-selenium2library'
],
)