File tree Expand file tree Collapse file tree 2 files changed +23
-6
lines changed Expand file tree Collapse file tree 2 files changed +23
-6
lines changed Original file line number Diff line number Diff line change 1
1
[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
5
3
nocapture =1 ; Displays print statements from output. Undo this by using: --nologcapture
6
4
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
Original file line number Diff line number Diff line change 6
6
7
7
setup (
8
8
name = 'seleniumbase' ,
9
- version = '1.1.7' ,
9
+ version = '1.1.13' ,
10
+ url = 'https://github.com/mdmintz/SeleniumBase' ,
10
11
author = 'Michael Mintz' ,
11
12
author_email = '@mintzworld' ,
12
13
maintainer = 'Michael Mintz' ,
13
- description = '''The SeleniumBase Test Framework.
14
- (Powered by Python, WebDriver, and more...)''' ,
14
+ description = 'The SeleniumBase Automation Framework' ,
15
15
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
+ ],
16
31
packages = ['seleniumbase' ,
17
32
'seleniumbase.core' ,
18
33
'seleniumbase.plugins' ,
You can’t perform that action at this time.
0 commit comments