From 0cdad19205988653112bd18e57962a1894f0c420 Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Fri, 18 Sep 2020 00:24:33 +0200 Subject: [PATCH] setup: add long decription --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 7b927e9..a3f832f 100644 --- a/setup.py +++ b/setup.py @@ -29,6 +29,9 @@ about = {} with open(os.path.join(srcdir, "svtplay_dl", "__version__.py")) as f: exec(f.read(), about) +with open("README.md", "r", "utf-8") as f: + readme = f.read() + deps = [] deps.append("requests>=2.0.0") deps.append("PySocks") @@ -46,9 +49,11 @@ setup( author="Johan Andersson", author_email="j@i19.se", description="Command-line program to download videos from various video on demand sites", + long_description=readme, + long_description_content_type="text/markdown", license="MIT", url="https://svtplay-dl.se", - python_requires=">=3.4", + python_requires=">=3.5", classifiers=[ "Development Status :: 5 - Production/Stable", "Environment :: Console",