Skip to content

Welcome to https://pypi.python.org/pypi/seleniumbase/ #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 4, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[nosetests]

; This is the config file for default values used during nosetest runs

# This is the config file for default values used during nosetest runs
nocapture=1 ; Displays print statements from output. Undo this by using: --nologcapture
logging-level=INFO ; INFO keeps the logs much cleaner than using DEBUG

[bdist_wheel]
# This flag says that the code is written to work on both Python 2 and Python 3.
universal=1
21 changes: 18 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,28 @@

setup(
name='seleniumbase',
version='1.1.7',
version='1.1.13',
url='https://github.com/mdmintz/SeleniumBase',
author='Michael Mintz',
author_email='@mintzworld',
maintainer='Michael Mintz',
description='''The SeleniumBase Test Framework.
(Powered by Python, WebDriver, and more...)''',
description='The SeleniumBase Automation Framework',
license='The MIT License',
install_requires=[
'selenium==2.48.0',
'nose==1.3.7',
'pytest==2.8.3',
'flake8==2.5.0',
'requests==2.7.0',
'urllib3==1.10.4',
'BeautifulSoup==3.2.1',
'unittest2==1.1.0',
'chardet==2.3.0',
'simplejson==3.7.3',
'boto==2.38.0',
'pdb==0.1',
'ipdb==0.8.1',
],
packages=['seleniumbase',
'seleniumbase.core',
'seleniumbase.plugins',
Expand Down