Skip to content
make-readme 431 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)

Fabrice Salvaire's avatar
Fabrice Salvaire committed
subprocess.call(('rst2html', 'README.rst', 'README.html'))