-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.88 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.88 KB
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
#!/usr/bin/env python
from setuptools import setup
setup(setup_requires=['pbr'], pbr=True, package_dir={'': 'src'}, packages=['Selenium2Library','Selenium2Library.keywords','Selenium2Library.locators',
'Selenium2Library.utils','Selenium2Library.utils.events'])
# execfile(join(dirname(__file__), 'src', 'Selenium2Library', 'version.py'))
#
# setup(name = 'robotframework-weblibrary',
# version = VERSION,
# description = 'Web testing library for Robot Framework Extended with Selenium2Library',
# long_description = open(join(dirname(__file__), 'README.rst')).read(),
# author = 'Dong Hao',
# author_email = '<longmazhanfeng@gmail.com>',
# url = 'https://g.hz.netease.com/yixinplusQA/RFUI_Framework/tree/master/Third-Party-Module/WebLibrary',
# license = 'Apache License 2.0',
# keywords = 'robotframework testing testautomation selenium selenium2 webdriver web',
# platforms = 'any',
# classifiers = [
# "Development Status :: 5 - Production/Stable",
# "License :: OSI Approved :: Apache Software License",
# "Operating System :: OS Independent",
# "Programming Language :: Python",
# "Topic :: Software Development :: Testing"
# ],
# install_requires = [
# 'images2gif-Pillow >= 0.0.2',
# 'decorator >= 3.3.2',
# 'selenium >= 2.32.0',
# 'robotframework >= 2.9.1, <=2.9.2',
# 'docutils >= 0.8.1'
# ],
# py_modules=['ez_setup'],
# package_dir = {'' : 'src'},
# packages = ['Selenium2Library','Selenium2Library.keywords','Selenium2Library.locators',
# 'Selenium2Library.utils','Selenium2Library.utils.events'],
# include_package_data = True,
# )