Switch build tool to Gradle (#15)
This commit is contained in:
parent
968c5d1f8e
commit
4f720ece58
141 changed files with 6362 additions and 500 deletions
p4a/testapps
29
p4a/testapps/setup_testapp_python2_sqlite_openssl.py
Normal file
29
p4a/testapps/setup_testapp_python2_sqlite_openssl.py
Normal file
|
@ -0,0 +1,29 @@
|
|||
|
||||
from distutils.core import setup
|
||||
from setuptools import find_packages
|
||||
|
||||
options = {'apk': {#'debug': None,
|
||||
'requirements': 'sdl2,pyjnius,kivy,python2,openssl,requests,peewee,sqlite3',
|
||||
'android-api': 19,
|
||||
'ndk-dir': '/home/sandy/android/crystax-ndk-10.3.2',
|
||||
'dist-name': 'bdisttest_python2_sqlite_openssl',
|
||||
'ndk-version': '10.3.2',
|
||||
'permission': 'VIBRATE',
|
||||
'permission': 'INTERNET',
|
||||
'arch': 'armeabi-v7a',
|
||||
'window': None,
|
||||
}}
|
||||
|
||||
packages = find_packages()
|
||||
print('packages are', packages)
|
||||
|
||||
setup(
|
||||
name='testapp_python2_sqlite_openssl',
|
||||
version='1.1',
|
||||
description='p4a setup.py test',
|
||||
author='Alexander Taylor',
|
||||
author_email='alexanderjohntaylor@gmail.com',
|
||||
packages=find_packages(),
|
||||
options=options,
|
||||
package_data={'testapp_sqlite_openssl': ['*.py', '*.png']}
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue