forked from kivy/python-for-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_testapp_python_encryption.py
More file actions
30 lines (26 loc) · 987 Bytes
/
setup_testapp_python_encryption.py
File metadata and controls
30 lines (26 loc) · 987 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
from distutils.core import setup
from setuptools import find_packages
options = {'apk': {'requirements': 'sdl2,pyjnius,kivy,python3,cryptography,'
'pycrypto,scrypt,m2crypto,pysha3,'
'pycryptodome,libtorrent',
'blacklist-requirements': 'sqlite3',
'android-api': 27,
'ndk-api': 21,
'dist-name': 'bdisttest_encryption',
'ndk-version': '10.3.2',
'arch': 'armeabi-v7a',
'permissions': ['INTERNET', 'VIBRATE'],
}}
package_data = {'': ['*.py',
'*.png']
}
setup(
name='testapp_encryption',
version='1.0',
description='p4a setup.py test',
author='Pol Canelles',
author_email='canellestudi@gmail.com',
packages=find_packages(),
options=options,
package_data={'testapp_encryption': ['*.py', '*.png']}
)