Skip to content

Commit 25aa9a9

Browse files
committed
Fixed setup.py to use with MANIFEST.in
1 parent 64998d3 commit 25aa9a9

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

setup.py

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,22 @@
11

2-
from setuptools import setup
2+
from setuptools import setup, find_packages
3+
4+
# NOTE: All package data is set in MANIFEST.in
35

46
setup(name='python-for-android',
57
version='0.1',
68
description='Android APK packager for Python scripts and apps',
79
author='Alexander Taylor',
810
author_email='[email protected]',
9-
url='https://github.com/inclement/p4a-experiment/',
11+
url='https://github.com/inclement/python-for-android-revamp',
1012
license='MIT',
11-
packages=['pythonforandroid'],
1213
install_requires=['appdirs', 'colorama', 'sh'],
1314
entry_points={
1415
'console_scripts': [
15-
'python-for-android = pythonforandroid.toolchain:ToolchainCL'
16+
'python-for-android = pythonforandroid.toolchain:ToolchainCL',
17+
],
18+
'distutils.commands': [
19+
'apktest = pythonforandroid.toolchain:test_setuptools_entry',
1620
],
17-
}
21+
},
1822
)
19-

0 commit comments

Comments
 (0)