Skip to content

Commit b1f0ddf

Browse files
Fix long_description in setup.py
The long description points to `README.rst`, which doesn't exist and makes `pip install .` fail. This changes the filename to `README.md`. However, we may have to change it in `MANIFEST` as well.
1 parent 9a0666e commit b1f0ddf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def version():
2525
packages=['livereload', 'livereload.management.commands'],
2626
description='Python LiveReload is an awesome tool for web developers',
2727
long_description_content_type='text/x-rst',
28-
long_description=fread('README.rst'),
28+
long_description=fread('README.md'),
2929
entry_points={
3030
'console_scripts': [
3131
'livereload = livereload.cli:main',

0 commit comments

Comments
 (0)