dunovank / jupyter-themes

Custom Jupyter Notebook Themes
MIT License
9.76k stars 1.06k forks source link

Fix long_description for PyPi site #322

Closed jerbob closed 3 years ago

jerbob commented 5 years ago

The PyPi project still doesn't have a long_description: image This is because in the setup.py, you only start reading the README when a line contains "Travis":

        if "Travis" in line.strip():
            startReading = True

However, the README only contains the string travis: image

This PR just reads everything in the README up to the Monospace Fonts header, since there's no reason to exclude the headers at the top.