forked from lovelysystems/robotframework-androidlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (27 loc) · 1.11 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
#!/usr/bin/env python
from os.path import join, dirname
execfile(join(dirname(__file__), 'src', 'AndroidLibrary', 'version.py'))
from distutils.core import setup
CLASSIFIERS = """
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
long_description=open(join(dirname(__file__), 'README.rst',)).read()
setup(
name = 'robotframework-androidlibrary',
version = VERSION,
description = 'Robot Framework Automation Library for Android',
long_description = long_description,
author = "Lovely Systems GmbH",
author_email = "[email protected]",
url = 'https://github.com/lovelysystems/robotframework-androidlibrary',
license = 'EPL',
keywords = 'robotframework testing testautomation android calabash robotium',
platforms = 'any',
zip_safe = False,
classifiers = CLASSIFIERS.splitlines(),
package_dir = {'' : 'src'},
install_requires = ['robotframework', 'requests'],
packages = ['AndroidLibrary'],
package_data = {'AndroidLibrary': ['src/AndroidLibrary/*.jar']}
)