This repository was archived by the owner on Jul 25, 2019. It is now read-only.
forked from smartkiwi/SeleniumFactory-for-Python
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.2 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.2 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
from setuptools import setup, find_packages
from selenium_factory import version
setup(
name='python-seleniumfactory',
version=version,
description="Python SeleniumFactory",
long_description="""
Simple interface factory to create Selenium objects, inspired by
SeleniumFactory interface from
https://github.com/infradna/selenium-client-factory. The main objective is to
be able to have an automatic interface to easily run tests under the Bamboo
Sauce Ondemand plugin as well as local tests. The factory object reads
environments variables setup by the Bamboo plugin and creates a remote Sauce
OnDemand session accordingly, otherwise it creates a local selenium
configuration.
Forked from the https://github.com/smartkiwi/SeleniumFactory-for-Python
""",
author='Matt Fair',
author_email='matt.fair@gmail.com',
maintainer='Erik LaBianca',
maintainer_email='erik.labianca@wisertogether.com',
url='https://github.com/syapse/python-seleniumfactory',
license='Unknown',
platforms=['any'],
packages=find_packages(),
install_requires=[
'selenium',
],
entry_points="""
# -*- Entry points: -*-
""",
include_package_data=True,
zip_safe=True,
)