Commit 48dfbf78e1ac893ef8a6393785112c710e4b9e0e

Authored by selurvedu
1 parent ba66f323

Sort `install_requires` in setup.py

Also, the `bin/openprocurement_tests` script was removed
in favour of `bin/op_tests`.
Showing 1 changed file with 11 additions and 12 deletions
@@ -18,26 +18,25 @@ setup(name='op_robot_tests', @@ -18,26 +18,25 @@ setup(name='op_robot_tests',
18 zip_safe=False, 18 zip_safe=False,
19 install_requires=[ 19 install_requires=[
20 # -*- Extra requirements: -*- 20 # -*- Extra requirements: -*-
21 - 'robotframework',  
22 - 'robotframework-selenium2library',  
23 - 'selenium < 3.0.dev0', 21 + 'Faker',
24 'Pillow', 22 'Pillow',
25 - 'iso8601',  
26 'PyYAML', 23 'PyYAML',
27 - 'munch',  
28 - 'Faker', 24 + 'barbecue',
  25 + 'chromedriver',
  26 + 'dateutils',
29 'dpath', 27 'dpath',
  28 + 'haversine',
  29 + 'iso8601',
30 'jsonpath-rw', 30 'jsonpath-rw',
31 - 'dateutils',  
32 - 'pytz', 31 + 'munch',
33 'parse', 32 'parse',
34 - 'chromedriver',  
35 - 'barbecue',  
36 - 'haversine' 33 + 'pytz',
  34 + 'robotframework',
  35 + 'robotframework-selenium2library',
  36 + 'selenium < 3.0.dev0',
37 ], 37 ],
38 entry_points={ 38 entry_points={
39 'console_scripts': [ 39 'console_scripts': [
40 - 'openprocurement_tests = op_robot_tests.runner:runner',  
41 'op_tests = op_robot_tests.runner:runner', 40 'op_tests = op_robot_tests.runner:runner',
42 ], 41 ],
43 } 42 }
Please register or login to post a comment