leetuan023 commited on
Commit
859116e
·
verified ·
1 Parent(s): 3a18d83

Delete setup.py

Browse files
Files changed (1) hide show
  1. setup.py +0 -31
setup.py DELETED
@@ -1,31 +0,0 @@
1
- from setuptools import setup
2
-
3
- with open('README.md', 'r', encoding='utf-8') as f:
4
- readme = f.read()
5
-
6
- setup(
7
- name='videocr',
8
- packages=['videocr'],
9
- version='0.1.6',
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='[email protected]',
16
- url='https://github.com/apm1467/videocr',
17
- download_url='https://github.com/apm1467/videocr/archive/v0.1.6.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
- )