forked from NaviNet-OSS/Robot-AppEyes
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (43 loc) · 1.74 KB
/
setup.py
File metadata and controls
49 lines (43 loc) · 1.74 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
45
46
47
48
49
#!/usr/bin/env python
from __future__ import absolute_import
import sys
# from distutils.core import setup
from setuptools import setup, find_packages
from os import path
import io
from os.path import join, dirname
sys.path.append(join(dirname(__file__), "EyesLibrary"))
exec(compile(open("EyesLibrary/version.py").read(), "EyesLibrary/version.py", "exec"))
with io.open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="robotframework-eyeslibrary",
version=__version__,
description="Visual verification testing library for Robot Framework",
long_description=long_description,
long_description_content_type="text/markdown",
author="Joel Oliveira, Sofia Nunes, Jonathan Ward",
author_email="<oliveira.joel@gmail.com>, <sofia.nunes@criticalsoftware.com>, <jonward@adobe.com>",
url="https://github.com/joel-oliveira/EyesLibrary",
license="Apache License 2.0",
keywords="robotframework testing testautomation eyes-selenium selenium appium visual-verification",
platforms="any",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.6",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Framework :: Robot Framework :: Library",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
],
install_requires=[
"robotframework > 3.0, < 4",
"eyes-selenium >4.0, < 4.1.26",
"six > 1.0.0, < 2",
"robotframework-seleniumlibrary",
"robotframework-appiumlibrary",
],
packages=find_packages(exclude=["tests", "docs"]),
)