2019-04-30 01:18:08 +02:00
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
with open('README.md', 'r', encoding='utf-8') as f:
|
|
|
|
readme = f.read()
|
2019-04-30 00:01:13 +02:00
|
|
|
|
|
|
|
setup(
|
2019-12-15 14:49:57 +01:00
|
|
|
name='videocr',
|
|
|
|
packages=['videocr'],
|
|
|
|
version='0.1.5',
|
|
|
|
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',
|
|
|
|
download_url='https://github.com/apm1467/videocr/archive/v0.1.5.tar.gz',
|
|
|
|
install_requires=[
|
2019-04-30 00:01:13 +02:00
|
|
|
'fuzzywuzzy>=0.17',
|
|
|
|
'python-Levenshtein>=0.12',
|
|
|
|
'opencv-python>=4.1,<5.0',
|
|
|
|
'pytesseract>=0.2.6'
|
|
|
|
],
|
2019-12-15 14:49:57 +01:00
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.7',
|
2019-04-30 00:01:13 +02:00
|
|
|
],
|
2019-12-15 14:49:57 +01:00
|
|
|
)
|