forked from kivy/python-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsdl2.py
More file actions
30 lines (28 loc) · 1.17 KB
/
Copy pathsdl2.py
File metadata and controls
30 lines (28 loc) · 1.17 KB
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
from distutils.core import setup
from setuptools import find_packages
options = {'apk': {'debug': None,
'bootstrap': 'sdl2',
'launcher': None,
'requirements': (
'python2,sdl2,android,'
'sqlite3,docutils,pygments,kivy,pyjnius,plyer,'
'cymunk,lxml,pil,openssl,pyopenssl,'
'twisted'), # audiostream, ffmpeg, numpy
'android-api': 14,
'dist-name': 'launchertest_sdl2',
'name': 'TestLauncher-sdl2',
'package': 'org.kivy.testlauncher_sdl2',
'permissions': [
'ACCESS_COARSE_LOCATION', 'ACCESS_FINE_LOCATION',
'BLUETOOTH', 'BODY_SENSORS', 'CAMERA', 'INTERNET',
'NFC', 'READ_EXTERNAL_STORAGE', 'RECORD_AUDIO',
'USE_FINGERPRINT', 'VIBRATE', 'WAKE_LOCK',
'WRITE_EXTERNAL_STORAGE']
}}
setup(
name='testlauncher_sdl2',
version='1.0',
description='p4a sdl2.py apk',
author='Peter Badida',
options=options
)