This repository has been archived by the owner on Aug 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·41 lines (36 loc) · 1.54 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
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
from distutils.core import setup
from os.path import abspath, dirname, join
execfile(join(dirname(abspath(__file__)), 'src', 'SeleniumLibrary', 'version.py'))
DESCRIPTION = """
SeleniumLibrary is a web testing library for Robot Framework.
It leverages the popular Selenium web testing tool and in
addition also uses FlexPilot tool to provide Flex testing
capabilities.
SeleniumLibrary uses deprecated Selenium 1 and is also itself
deprecated. Selenium2Library should be used instead.
"""[1:-1]
CLASSIFIERS = """
Development Status :: 7 - Inactive
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
setup(name = 'robotframework-seleniumlibrary',
version = VERSION,
description = 'Deprecated web testing library for Robot Framework',
long_description = DESCRIPTION,
author = 'Robot Framework Developers',
author_email = '[email protected]',
url = 'https://github.com/robotframework/SeleniumLibrary',
license = 'Apache License 2.0',
keywords = 'robotframework testing testautomation selenium web',
platforms = 'any',
classifiers = CLASSIFIERS.splitlines(),
package_dir = {'' : 'src'},
packages = ['SeleniumLibrary'],
package_data = {'SeleniumLibrary': ['lib/*.jar',
'lib/user-extensions.js',
'firefoxprofile/*.*']},
)