using README.md to generate pypi long description (#316)

master
SpicyPlatform 2020-02-26 06:03:03 -08:00 committed by GitHub
parent 8ffa64dde6
commit 29fb8c3f56
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 1 deletions

View File

@ -5,6 +5,11 @@ from setuptools import setup, find_packages
import scdl
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='scdl',
version=scdl.__version__,
@ -12,7 +17,8 @@ setup(
author='FlyinGrub',
author_email='flyinggrub@gmail.com',
description='Download Music from Souncloud',
long_description="README on github : https://github.com/flyingrub/scdl",
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=[
'docopt',
'mutagen',