forked from kivy/python-for-android
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup_vispy.py
33 lines (28 loc) · 977 Bytes
/
setup_vispy.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
from distutils.core import setup
from setuptools import find_packages
options = {'apk': {'debug': None,
'requirements': 'python3,vispy',
'blacklist-requirements': 'openssl,sqlite3',
'android-api': 27,
'ndk-api': 21,
'bootstrap': 'empty',
'ndk-dir': '/home/asandy/android/android-ndk-r17c',
'dist-name': 'bdisttest',
'ndk-version': '10.3.2',
'permission': 'VIBRATE',
}}
package_data = {'': ['*.py',
'*.png']
}
packages = find_packages()
print('packages are', packages)
setup(
name='testapp_vispy',
version='1.1',
description='p4a setup.py test',
author='Alexander Taylor',
author_email='[email protected]',
packages=find_packages(),
options=options,
package_data={'testapp_vispy': ['*.py', '*.png']}
)