From 3007bc81a4176af345b9f4f2750b8cb967f6eed6 Mon Sep 17 00:00:00 2001 From: Toni Lappalainen Date: Mon, 14 Dec 2015 21:48:37 +0200 Subject: [PATCH] Prepare for initial push to PyPi --- setup.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 04f749b..e223f0a 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,9 @@ DESCRIPTION = """ FlexSeleniumLibrary is a web testing library for Robot Framework -to manipulate Adobe Flex applications. +to manipulate Adobe Flex applications. Flex applications bootstrapped +with SeleniumFlexAPI or FlexPilot can be programmatically controlled with +this library. """[1:-1] setup(name = 'robotframework-flexseleniumlibrary', @@ -21,13 +23,12 @@ author_email = '', url = 'https://github.com/hirsivaja/FlexSeleniumLibrary', license = 'Apache License 2.0', - keywords = 'robotframework testing testautomation selenium webdriver flex', + keywords = 'robotframework testing testautomation selenium webdriver flex FlexPilot SeleniumFlexAPI', platforms = 'any', install_requires = [ - 'selenium >= 2.32.0', - 'robotframework >= 2.6.0' + 'robotframework-selenium2library >= 1.7.0' ], - py_modules=['ez_setup'], + py_modules = ['ez_setup'], package_dir = {'' : 'src'}, packages = ['FlexSeleniumLibrary','FlexSeleniumLibrary.keywords'], include_package_data = True,