Skip to content
make-readme 554 B
Newer Older
Fabrice Salvaire's avatar
Fabrice Salvaire committed
#! /usr/bin/env python3
Fabrice Salvaire's avatar
Fabrice Salvaire committed
# -*- Python -*-

####################################################################################################

import subprocess

from setup_data import long_description

####################################################################################################

with open('README.rst', 'w') as f:
    f.write(long_description)

# subprocess.call('python setup.py --long-description | rst2html > /dev/null', shell=True)
subprocess.call('python setup.py --long-description | rst2html > README.html', shell=True)