-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
28 lines (25 loc) · 1.18 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env python
from setuptools import setup
DESCRIPTION = """
FlexSeleniumLibrary is a web testing library for Robot Framework
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',
version = '0.3.4',
description = 'Adobe Flex testing library for Robot Framework',
long_description = DESCRIPTION,
author = 'Toni Lappalainen',
author_email = '<hirsivaja@users.noreply.github.com>',
url = 'https://github.com/hirsivaja/FlexSeleniumLibrary',
license = 'Apache License 2.0',
keywords = 'robotframework testing testautomation selenium '
'webdriver flex FlexPilot SeleniumFlexAPI',
platforms = 'any',
install_requires = ['robotframework-seleniumlibrary >= 3.1.0'],
package_dir = {'' : 'src'},
packages = ['FlexSeleniumLibrary',
'FlexSeleniumLibrary.keywords'],
include_package_data = True,
)