mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 14:32:28 +03:00
setup.py: use officially documented way of including README
https://packaging.python.org/tutorials/packaging-projects/
This commit is contained in:
parent
f13c41e3ba
commit
ce54dbfc11
1 changed files with 5 additions and 1 deletions
6
setup.py
6
setup.py
|
@ -49,10 +49,14 @@ def get_data_files():
|
|||
return data_files
|
||||
|
||||
|
||||
with open("README.md", "r") as fh:
|
||||
long_description = fh.read()
|
||||
|
||||
|
||||
setup(name='fdroidserver',
|
||||
version='1.2a',
|
||||
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