Use Markdown on PyPI
This commit is contained in:
parent
72cdd8b979
commit
c5684bb87a
4
setup.py
4
setup.py
|
@ -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'],
|
||||||
|
|
Loading…
Reference in a new issue