forked from luisxiaomai/robotframework-anywherelibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·22 lines (20 loc) · 841 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from os.path import join, dirname
import os
execfile(join(dirname(__file__), 'src', 'AnywhereLibrary', 'version.py'))
setup(
name = "robotframework-anywherelibrary",
version= VERSION,
package_dir = {'' : 'src'},
packages=['AnywhereLibrary', 'AnywhereLibrary.base'],
author = "luis.lu",
author_email = "[email protected]",
platforms='any',
install_requires=['decorator >= 3.3.2','selenium >= 2.41.0','robotframework >= 2.6.0','docutils >= 0.8.1','Appium-Python-Client >= 0.4'],
url = "https://github.com/luisxiaomai/robotframework-anywherelibrary",
description = "Robotframework test library for cross platform:android,ios,browser",
include_package_data = True,
)