setup.py (view raw)
1from setuptools import setup
2
3with open('README.md', 'r', encoding='utf-8') as f:
4 readme = f.read()
5
6setup(
7 name='videocr',
8 packages=['videocr'],
9 version='0.1.5',
10 license='MIT',
11 description='Extract hardcoded subtitles from videos using machine learning',
12 long_description_content_type='text/markdown',
13 long_description=readme,
14 author='Yi Ge',
15 author_email='me@yige.ch',
16 url='https://github.com/apm1467/videocr',
17 download_url='https://github.com/apm1467/videocr/archive/v0.1.5.tar.gz',
18 install_requires=[
19 'fuzzywuzzy>=0.17',
20 'python-Levenshtein>=0.12',
21 'opencv-python>=4.1,<5.0',
22 'pytesseract>=0.2.6'
23 ],
24 classifiers=[
25 'Development Status :: 3 - Alpha',
26 'Intended Audience :: Developers',
27 'License :: OSI Approved :: MIT License',
28 'Programming Language :: Python :: 3',
29 'Programming Language :: Python :: 3.7',
30 ],
31)