forked from kivy/python-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_pygame.py
More file actions
31 lines (26 loc) · 935 Bytes
/
setup_pygame.py
File metadata and controls
31 lines (26 loc) · 935 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': 'pygame,pyjnius,kivy,python2,android',
'android-api': 19,
'ndk-dir': '/home/asandy/android/crystax-ndk-10.3.2',
'dist-name': 'bdisttest_pygame',
'orientation': 'portrait',
'ndk-version': '10.3.2',
'permission': 'VIBRATE',
}}
package_data = {'': ['*.py',
'*.png']
}
packages = find_packages()
print('packages are', packages)
setup(
name='testapp_setup_pygame',
version='1.1',
description='p4a setup.py test with pygame',
author='Alexander Taylor',
author_email='[email protected]',
packages=find_packages(),
options=options,
package_data={'testapp_pygame': ['*.py', '*.png']}
)