mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
setup.py: use officially documented way of including README
https://packaging.python.org/tutorials/packaging-projects/
This commit is contained in:
parent
c02a98f364
commit
39e4e05c9f
1 changed files with 3 additions and 1 deletions
4
setup.py
4
setup.py
|
@ -48,11 +48,13 @@ def get_data_files():
|
|||
data_files.append((d, [f, ]))
|
||||
return data_files
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
setup(name='fdroidserver',
|
||||
version='1.1.4',
|
||||
description='F-Droid Server Tools',
|
||||
long_description='README.md',
|
||||
long_description=long_description,
|
||||
long_description_content_type='text/markdown',
|
||||
author='The F-Droid Project',
|
||||
author_email='team@f-droid.org',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue