diff --git a/setup.cfg b/setup.cfg index 061dbdd1082..1785724fff7 100755 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/setup.py b/setup.py index 657ae8603d5..6206adb0716 100755 --- a/setup.py +++ b/setup.py @@ -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',