forked from jessezach/RobotEyes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 1.2 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
from setuptools import setup, find_packages
import os
version = '1.6.2'
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',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'pillow',
'robotframework',
'flask'
],
entry_points={
'console_scripts': [
'eyes = RobotEyes.runner:main',
'reportgen = RobotEyes.reportgen:report_gen'
]
},
)