update setup
This commit is contained in:
parent
063a6ac697
commit
7bde41c37f
1 changed files with 21 additions and 16 deletions
23
p4a/setup.py
23
p4a/setup.py
|
@ -15,11 +15,11 @@ package_data = {'': ['*.tmpl',
|
|||
|
||||
data_files = []
|
||||
|
||||
|
||||
if os.name == 'nt':
|
||||
install_reqs = ['appdirs', 'colorama>=0.3.3', 'jinja2',
|
||||
'six']
|
||||
else:
|
||||
#
|
||||
# if os.name == 'nt':
|
||||
# install_reqs = ['appdirs', 'colorama>=0.3.3', 'jinja2',
|
||||
# 'six']
|
||||
# else:
|
||||
# don't use sh after 1.12.5, we have performance issues
|
||||
# https://github.com/amoffat/sh/issues/378
|
||||
install_reqs = ['appdirs', 'colorama>=0.3.3', 'sh>=1.10,<1.12.5', 'jinja2',
|
||||
|
@ -90,15 +90,17 @@ setup(name='python-for-android',
|
|||
install_requires=install_reqs,
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'python-for-android = pythonforandroid.toolchain:main',
|
||||
'p4a = pythonforandroid.toolchain:main',
|
||||
'python-for-android = pythonforandroid.entrypoints:main',
|
||||
'p4a = pythonforandroid.entrypoints:main',
|
||||
],
|
||||
'distutils.commands': [
|
||||
'apk = pythonforandroid.bdistapk:BdistAPK',
|
||||
'aar = pythonforandroid.bdistapk:BdistAAR',
|
||||
'aab = pythonforandroid.bdistapk:BdistAAB',
|
||||
],
|
||||
},
|
||||
classifiers=[
|
||||
'Development Status :: 4 - Beta',
|
||||
'Development Status :: 5 - Production/Stable',
|
||||
'Intended Audience :: Developers',
|
||||
'License :: OSI Approved :: MIT License',
|
||||
'Operating System :: Microsoft :: Windows',
|
||||
|
@ -107,8 +109,11 @@ setup(name='python-for-android',
|
|||
'Operating System :: MacOS :: MacOS X',
|
||||
'Operating System :: Android',
|
||||
'Programming Language :: C',
|
||||
'Programming Language :: Python :: 2',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: 3.9',
|
||||
'Programming Language :: Python :: 3.10',
|
||||
'Topic :: Software Development',
|
||||
'Topic :: Utilities',
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue