-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathsetup.py
executable file
·51 lines (49 loc) · 1.72 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""
The setup package to install the SeleniumBase Test Framework plugins
"""
from setuptools import setup, find_packages # noqa
setup(
name='seleniumbase',
version='1.1.26',
url='https://github.com/mdmintz/SeleniumBase',
author='Michael Mintz',
author_email='@mintzworld',
maintainer='Michael Mintz',
description='The SeleniumBase Automation Framework',
license='The MIT License',
install_requires=[
'selenium==2.50.1',
'nose==1.3.7',
'pytest==2.8.5',
'flake8==2.5.1',
'requests==2.9.1',
'urllib3==1.14',
'BeautifulSoup==3.2.1',
'unittest2==1.1.0',
'chardet==2.3.0',
'simplejson==3.8.1',
'boto==2.38.0',
'ipdb==0.8.1',
'pyvirtualdisplay==0.1.5',
],
packages=['seleniumbase',
'seleniumbase.core',
'seleniumbase.plugins',
'seleniumbase.fixtures',
'seleniumbase.common',
'seleniumbase.config'],
entry_points={
'nose.plugins': [
'base_plugin = seleniumbase.plugins.base_plugin:Base',
'selenium = seleniumbase.plugins.selenium_plugin:SeleniumBrowser',
'page_source = seleniumbase.plugins.page_source:PageSource',
'screen_shots = seleniumbase.plugins.screen_shots:ScreenShots',
'test_info = seleniumbase.plugins.basic_test_info:BasicTestInfo',
('db_reporting = '
'seleniumbase.plugins.db_reporting_plugin:DBReporting'),
's3_logging = seleniumbase.plugins.s3_logging_plugin:S3Logging',
('hipchat_reporting = seleniumbase.plugins'
'.hipchat_reporting_plugin:HipchatReporting'),
]
}
)