1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-10-03 17:50:11 +02:00

Merge branch 'windows-install-fix' into 'master'

Add console_scripts to create .exe file during installation on Windows

See merge request fdroid/fdroidserver!1048
This commit is contained in:
Michael Pöhn 2021-12-09 11:24:58 +00:00
commit dccfc2f712
2 changed files with 4 additions and 2 deletions

View File

@ -18,7 +18,6 @@ include examples/makebuildserver.config.py
include examples/opensc-fdroid.cfg
include examples/public-read-only-s3-bucket-policy.json
include examples/template.yml
include fdroid
include gradlew-fdroid
include LICENSE
include locale/bo/LC_MESSAGES/fdroidserver.mo

View File

@ -62,7 +62,10 @@ setup(name='fdroidserver',
url='https://f-droid.org',
license='AGPL-3.0',
packages=['fdroidserver', 'fdroidserver.asynchronousfilereader'],
scripts=['fdroid', 'makebuildserver'],
scripts=['makebuildserver'],
entry_points={
'console_scripts': ['fdroid=fdroidserver.__main__:main']
},
data_files=get_data_files(),
python_requires='>=3.5',
cmdclass={'versioncheck': VersionCheckCommand},