mirror of
https://github.com/spaam/svtplay-dl.git
synced 2024-11-27 13:44:14 +01:00
setup: add long decription
This commit is contained in:
parent
5fc7750e17
commit
0cdad19205
7
setup.py
7
setup.py
@ -29,6 +29,9 @@ about = {}
|
|||||||
with open(os.path.join(srcdir, "svtplay_dl", "__version__.py")) as f:
|
with open(os.path.join(srcdir, "svtplay_dl", "__version__.py")) as f:
|
||||||
exec(f.read(), about)
|
exec(f.read(), about)
|
||||||
|
|
||||||
|
with open("README.md", "r", "utf-8") as f:
|
||||||
|
readme = f.read()
|
||||||
|
|
||||||
deps = []
|
deps = []
|
||||||
deps.append("requests>=2.0.0")
|
deps.append("requests>=2.0.0")
|
||||||
deps.append("PySocks")
|
deps.append("PySocks")
|
||||||
@ -46,9 +49,11 @@ setup(
|
|||||||
author="Johan Andersson",
|
author="Johan Andersson",
|
||||||
author_email="j@i19.se",
|
author_email="j@i19.se",
|
||||||
description="Command-line program to download videos from various video on demand sites",
|
description="Command-line program to download videos from various video on demand sites",
|
||||||
|
long_description=readme,
|
||||||
|
long_description_content_type="text/markdown",
|
||||||
license="MIT",
|
license="MIT",
|
||||||
url="https://svtplay-dl.se",
|
url="https://svtplay-dl.se",
|
||||||
python_requires=">=3.4",
|
python_requires=">=3.5",
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
|
Loading…
Reference in New Issue
Block a user