20 lines
509 B
Python
Raw Normal View History

2022-09-28 01:57:08 +01:00
from setuptools import setup, find_packages
setup(
version="1.0",
name="faster_auto_subtitle",
2022-09-28 01:57:08 +01:00
packages=find_packages(),
py_modules=["auto_subtitle"],
author="Sergey Chernyaev",
2022-09-28 01:57:08 +01:00
install_requires=[
'faster-whisper',
'tqdm',
'ffmpeg-python'
2022-09-28 01:57:08 +01:00
],
description="Automatically generate and embed subtitles into your videos",
entry_points={
'console_scripts': ['faster_auto_subtitle=auto_subtitle.cli:main'],
2022-09-28 01:57:08 +01:00
},
include_package_data=True,
)