SeleniumBase/setup.py

58 lines
1.9 KiB
Python
Raw Normal View History

2015-12-05 05:11:53 +08:00
"""
2016-07-24 06:51:59 +08:00
The setup package to install SeleniumBase dependencies and plugins
2015-12-05 05:11:53 +08:00
"""
from setuptools import setup, find_packages # noqa
2017-03-12 05:20:56 +08:00
import os
2015-12-05 05:11:53 +08:00
setup(
name='seleniumbase',
2017-03-12 04:00:07 +08:00
version='1.3.1',
2016-02-17 09:21:59 +08:00
url='http://seleniumbase.com',
2015-12-05 05:11:53 +08:00
author='Michael Mintz',
author_email='@mintzworld',
maintainer='Michael Mintz',
2016-02-17 09:21:59 +08:00
description='Reliable Browser Automation - http://seleniumbase.com',
2015-12-05 05:11:53 +08:00
license='The MIT License',
install_requires=[
'pip>=9.0.1',
'setuptools>=34.3.1',
'selenium==3.3.0',
'nose>=1.3.7',
'pytest>=3.0.6',
2016-09-21 13:10:22 +08:00
'six>=1.10.0',
'flake8==3.3.0',
'requests==2.13.0',
'urllib3==1.20',
'BeautifulSoup==3.2.1',
'unittest2==1.1.0',
'chardet==2.3.0',
'boto==2.46.1',
'ipdb==0.10.2',
'pyvirtualdisplay==0.2.1',
],
2015-12-05 05:11:53 +08:00
packages=['seleniumbase',
'seleniumbase.core',
'seleniumbase.plugins',
'seleniumbase.fixtures',
2016-07-15 11:29:14 +08:00
'seleniumbase.masterqa',
2015-12-05 05:11:53 +08:00
'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',
2015-12-09 05:33:44 +08:00
('db_reporting = '
'seleniumbase.plugins.db_reporting_plugin:DBReporting'),
2015-12-05 05:11:53 +08:00
's3_logging = seleniumbase.plugins.s3_logging_plugin:S3Logging',
2015-12-09 05:33:44 +08:00
('hipchat_reporting = seleniumbase.plugins'
'.hipchat_reporting_plugin:HipchatReporting'),
2015-12-05 05:11:53 +08:00
]
}
)
print("Installation Complete!")
print(os.system("cat SeleniumBase.egg-info/PKG-INFO"))