forked from apm1467/videocr
-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
30 lines (28 loc) · 914 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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.7',
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='[email protected]',
url='https://github.com/apm1467/videocr',
download_url='https://github.com/apm1467/videocr/archive/v0.1.6.tar.gz',
install_requires=[
'thefuzz>=0.19',
'python-Levenshtein>=0.12',
'paddleocr==2.7.0.2',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
)