From e8e05fef267c6d379cbe9c92c84abea8142f95c1 Mon Sep 17 00:00:00 2001 From: Vishnunarayan K I Date: Mon, 28 May 2018 02:46:50 +0530 Subject: [PATCH] prepare 2.0 release --- setup.py | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 9f790ca..67afe6b 100644 --- a/setup.py +++ b/setup.py @@ -2,21 +2,27 @@ from setuptools import setup, find_packages +with open('README.md', 'r') as f: + long_description = f.read() + + setup( name='anime-downloader', - version='1.1', + version='2.0', author='Vishnunarayan K.I.', author_email='vishnunarayan6105@gmail.com', description='Download your favourite anime', packages=find_packages(), url='https://github.com/vn-ki/anime-downloader', - download_url='https://github.com/vn-ki/anime-downloader/archive/1.1.tar.gz', - keywords=['anime', 'downloader'], + download_url='https://github.com/vn-ki/anime-downloader/archive/2.0.tar.gz', + keywords=['anime', 'downloader', '9anime', 'download', 'kissanime'], install_requires=[ 'bs4', 'requests', 'Click', ], + long_description=long_description, + long_description_content_type='text/markdown', entry_points=''' [console_scripts] anime-dl=anime_downloader.cli:cli