Use reStructuredText as file format for README

rst seems to be cooler than md, and is the only format accepted by pypi,
and is accepted by github as well.

There is an intro to rst at:
http://docutils.sourceforge.net/docs/user/rst/quickref.html
This commit is contained in:
Alexander Graf
2016-09-19 19:45:15 +02:00
parent 1d506b5f95
commit be8546812a
3 changed files with 139 additions and 110 deletions

View File

@@ -17,6 +17,7 @@ setup(
description='Tool to download pictures (or videos) and captions from Instagram, from a given '
'set of profiles (even if private), from your feed or from all followees of a '
'given profile.',
long_description=open('README.rst').read(),
install_requires=['requests>=2.4'],
python_requires='>=3.3',
entry_points={'console_scripts': ['instaloader=instaloader:main']},