all repos — videocr @ 168c9cfd5244b02909def2509968b20ca0147f7f

Extract hardcoded subtitles from videos using machine learning

setup.py (view raw)

 1from distutils.core import setup
 2
 3setup(
 4    name = 'videocr',
 5    packages = ['videocr'],
 6    version = '0.1.1',
 7    license = 'MIT',
 8    description = 'Extract hardcoded subtitles from videos using machine learning',
 9    author = 'Yi Ge',
10    author_email = 'me@yige.ch',
11    url = 'https://github.com/apm1467/videocr',
12    download_url = 'https://github.com/apm1467/videocr/archive/v0.1.tar.gz',
13    install_requires = [
14        'fuzzywuzzy>=0.17',
15        'python-Levenshtein>=0.12',
16        'opencv-python>=4.1,<5.0',
17        'pytesseract>=0.2.6'
18    ],
19    classifiers = [
20      'Development Status :: 3 - Alpha',
21      'Intended Audience :: Developers',
22      'License :: OSI Approved :: MIT License',
23      'Programming Language :: Python :: 3',
24      'Programming Language :: Python :: 3.7',
25    ],
26)