all repos — videocr @ e4b07ebbbd084a84ac7179ef040b00f9d900a3a5

Extract hardcoded subtitles from videos using machine learning

add project long_description
Yi Ge me@yige.ch
Tue, 30 Apr 2019 01:18:08 +0200
commit

e4b07ebbbd084a84ac7179ef040b00f9d900a3a5

parent

168c9cfd5244b02909def2509968b20ca0147f7f

1 files changed, 7 insertions(+), 2 deletions(-)

jump to
M setup.pysetup.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',