mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-13 22:42:29 +03:00
include README.rst in official release source tarball
README.rst is still the standard for Python libs.
This commit is contained in:
parent
7d4e354f25
commit
d4865ec038
3 changed files with 15 additions and 10 deletions
21
setup.py
21
setup.py
|
@ -12,15 +12,20 @@ else:
|
|||
data_prefix = '.'
|
||||
|
||||
# PyPI accepts reST not Markdown
|
||||
if shutil.which('pandoc'):
|
||||
print('Using reST README')
|
||||
import subprocess
|
||||
readme = subprocess.check_output(['pandoc', '--from=markdown', '--to=rst', 'README.md'],
|
||||
universal_newlines=True)
|
||||
if os.path.exists('README.md'):
|
||||
if shutil.which('pandoc'):
|
||||
print('Using reST README')
|
||||
import subprocess
|
||||
subprocess.check_call(['pandoc', '--from=markdown', '--to=rst', 'README.md',
|
||||
'--output=README.rst'], universal_newlines=True)
|
||||
with open('README.rst') as fp:
|
||||
readme = fp.read()
|
||||
else:
|
||||
print('Using Markdown README')
|
||||
with open('README.md') as fp:
|
||||
readme = fp.read()
|
||||
else:
|
||||
print('Using Markdown README')
|
||||
with open('README.md') as fp:
|
||||
readme = fp.read()
|
||||
readme = ''
|
||||
|
||||
setup(name='fdroidserver',
|
||||
version='0.8',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue