forked from applitools/eyes.selenium.python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.24 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
from distutils.core import setup
from applitools import VERSION
setup(
name='eyes-selenium',
version=VERSION,
packages=['applitools', 'applitools.utils'],
data_files=[('samples', ['samples/test_script.py'])],
url='http://www.applitools.com',
license='Apache License, Version 2.0',
author='Applitools Team',
author_email='team@applitools.com',
description='Applitools Eyes SDK For Selenium Python WebDriver',
long_description="""\
Applitools Eyes SDK For Selenium Python WebDriver.
Sample scripts are available inside the distribution under the 'samples' directory.
""",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing"
],
keywords='applitools eyes selenium',
install_requires=[
'setuptools',
'requests>=2.1.0',
'pypng>=0.0.16',
'selenium>=2.43.0',
'Appium-Python-Client>=0.13'
]
)