Use Markdown on PyPI

This commit is contained in:
Hugo 2018-04-06 13:11:28 +03:00
parent 72cdd8b979
commit c5684bb87a

View file

@ -1,9 +1,13 @@
#!/usr/bin/env python #!/usr/bin/env python
from setuptools import find_packages, setup from setuptools import find_packages, setup
with open("README.md") as f:
long_description = f.read()
setup( setup(
name="pylast", name="pylast",
long_description=long_description,
long_description_content_type="text/markdown",
version="2.2.0.dev0", version="2.2.0.dev0",
author="Amr Hassan <amr.hassan@gmail.com> and Contributors", author="Amr Hassan <amr.hassan@gmail.com> and Contributors",
install_requires=['six'], install_requires=['six'],