forked from ming060/robotframework-uiautomatorlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 1.1 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
from distutils.core import setup
setup(
name = 'robotframework-uiautomatorlibrary',
packages = ['uiautomatorlibrary'],
version = '0.1',
author='ming060',
author_email = '[email protected]',
url = 'https://github.com/ming060/robotframework-uiautomatorlibrary',
description = 'Robot Framework Android Test Library Based on Python uiautomator',
long_description =
"""
This is a test library for `Robot Framework <https://pypi.python.org/pypi/robotframework>`_ to bring keyword-driven testing to Android apps..
It uses by using `Python uiautomator <https://pypi.python.org/pypi/uiautomator>`_ internally.
""",
install_requires = ['uiautomator >= 0.1.28'],
classifiers = [
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing'
]
)