From e4b07ebbbd084a84ac7179ef040b00f9d900a3a5 Mon Sep 17 00:00:00 2001 From: Yi Ge Date: Tue, 30 Apr 2019 01:18:08 +0200 Subject: [PATCH] add project long_description --- setup.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c60d061..486dd93 100644 --- a/setup.py +++ b/setup.py @@ -1,11 +1,16 @@ -from distutils.core import setup +from setuptools import setup + +with open('README.md', 'r', encoding='utf-8') as f: + readme = f.read() setup( name = 'videocr', packages = ['videocr'], - version = '0.1.1', + version = '0.1.4', license = 'MIT', description = 'Extract hardcoded subtitles from videos using machine learning', + long_description_content_type = 'text/markdown', + long_description = readme, author = 'Yi Ge', author_email = 'me@yige.ch', url = 'https://github.com/apm1467/videocr',