Merge pull request #259 from pylast/use-markdown-on-pypi

Use Markdown on PyPI
This commit is contained in:
Hugo 2018-04-06 14:11:13 +03:00 committed by GitHub
commit 8b4866682d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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'],