forked from kivy/python-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_testapp_python3.py
More file actions
31 lines (26 loc) · 905 Bytes
/
setup_testapp_python3.py
File metadata and controls
31 lines (26 loc) · 905 Bytes
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
from distutils.core import setup
from setuptools import find_packages
options = {'apk': {'debug': None,
'requirements': 'sdl2,pyjnius,kivy,python3crystax',
'android-api': 19,
'ndk-dir': '/home/asandy/android/crystax-ndk-10.3.2',
'dist-name': 'bdisttest_python3',
'ndk-version': '10.3.2',
'arch': 'armeabi-v7a',
'permission': 'VIBRATE',
}}
package_data = {'': ['*.py',
'*.png']
}
packages = find_packages()
print('packages are', packages)
setup(
name='testapp_python3',
version='1.1',
description='p4a setup.py test',
author='Alexander Taylor',
author_email='alexanderjohntaylor@gmail.com',
packages=find_packages(),
options=options,
package_data={'testapp': ['*.py', '*.png']}
)