File tree Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Expand file tree Collapse file tree 1 file changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- from past .builtins import execfile
2
1
#!/usr/bin/env python
2
+ try :
3
+ from past .builtins import execfile
4
+ except ImportError as e :
5
+ print ("Please install 'future' first, i.e. 'pip install future'.\n {0}" .format (e ))
3
6
4
7
import sys
5
8
from os .path import join , dirname
34
37
"Topic :: Software Development :: Testing"
35
38
],
36
39
install_requires = [
37
- 'decorator >= 3.3.2' ,
38
- 'selenium >= 2.32.0' ,
39
- 'robotframework >= 2.6.0' ,
40
- 'docutils >= 0.8.1'
41
- ],
40
+ 'decorator >= 3.3.2' ,
41
+ 'selenium >= 2.32.0' ,
42
+ 'robotframework >= 2.6.0' ,
43
+ 'docutils >= 0.8.1' ,
44
+ 'future >= 0.15.2'
45
+ ],
42
46
py_modules = ['ez_setup' ],
43
47
package_dir = {'' : 'src' },
44
48
packages = ['Selenium2Library' ,'Selenium2Library.keywords' ,'Selenium2Library.locators' ,
You can’t perform that action at this time.
0 commit comments