We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25aa9a9 commit 14bc7d8Copy full SHA for 14bc7d8
pythonforandroid/bdist_apk.py
@@ -0,0 +1,14 @@
1
+from __future__ import print_function
2
+from setuptools import Command
3
+from pythonforandroid import toolchain
4
+
5
+class BdistAPK(Command):
6
+ user_options = []
7
+ def initialize_options(sel):
8
+ print('initialising!')
9
10
+ def finalize_options(self):
11
+ print('finalising!')
12
13
+ def run(self):
14
+ print('running!')
setup.py
@@ -16,7 +16,7 @@
16
'python-for-android = pythonforandroid.toolchain:ToolchainCL',
17
],
18
'distutils.commands': [
19
- 'apktest = pythonforandroid.toolchain:test_setuptools_entry',
+ 'apktest = pythonforandroid.bdist_apk:BdistAPK',
20
21
},
22
)
0 commit comments