Skip to content

Commit 9a0bee0

Browse files
committed
1 parent 11067cf commit 9a0bee0

File tree

2 files changed

+23
-6
lines changed

2 files changed

+23
-6
lines changed

setup.cfg

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
[nosetests]
2-
3-
; This is the config file for default values used during nosetest runs
4-
2+
# This is the config file for default values used during nosetest runs
53
nocapture=1 ; Displays print statements from output. Undo this by using: --nologcapture
64
logging-level=INFO ; INFO keeps the logs much cleaner than using DEBUG
5+
6+
[bdist_wheel]
7+
# This flag says that the code is written to work on both Python 2 and Python 3.
8+
universal=1

setup.py

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,28 @@
66

77
setup(
88
name='seleniumbase',
9-
version='1.1.7',
9+
version='1.1.13',
10+
url='https://github.com/mdmintz/SeleniumBase',
1011
author='Michael Mintz',
1112
author_email='@mintzworld',
1213
maintainer='Michael Mintz',
13-
description='''The SeleniumBase Test Framework.
14-
(Powered by Python, WebDriver, and more...)''',
14+
description='The SeleniumBase Automation Framework',
1515
license='The MIT License',
16+
install_requires=[
17+
'selenium==2.48.0',
18+
'nose==1.3.7',
19+
'pytest==2.8.3',
20+
'flake8==2.5.0',
21+
'requests==2.7.0',
22+
'urllib3==1.10.4',
23+
'BeautifulSoup==3.2.1',
24+
'unittest2==1.1.0',
25+
'chardet==2.3.0',
26+
'simplejson==3.7.3',
27+
'boto==2.38.0',
28+
'pdb==0.1',
29+
'ipdb==0.8.1',
30+
],
1631
packages=['seleniumbase',
1732
'seleniumbase.core',
1833
'seleniumbase.plugins',

0 commit comments

Comments
 (0)