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