-
Notifications
You must be signed in to change notification settings - Fork 235
/
setup.py
45 lines (41 loc) · 1.67 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
42
43
44
45
# set up basic requirements for droidbot
from setuptools import setup, find_packages, findall
import os
setup(
name='droidbot',
packages=find_packages(include=['droidbot', 'droidbot.adapter']),
# this must be the same as the name above
version='1.0.2b4',
description='A lightweight UI-guided test input generator for Android.',
author='Yuanchun Li',
license='MIT',
author_email='[email protected]',
url='https://github.com/honeynet/droidbot', # use the URL to the github repo
download_url='https://github.com/honeynet/droidbot/tarball/1.0.2b4',
keywords=['testing', 'monkey', 'exerciser'], # arbitrary keywords
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Testing',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python',
],
entry_points={
'console_scripts': [
'droidbot=start:main',
],
},
package_data={
'droidbot': [os.path.relpath(x, 'droidbot') for x in findall('droidbot/resources/')]
},
# androidviewclient doesnot support pip install, thus you should install it with easy_install
install_requires=['androguard>=3.4.0a1', 'networkx', 'Pillow'],
)