mirror of
https://github.com/karl0ss/bazarr-ai-sub-generator.git
synced 2025-04-26 14:59:21 +01:00
22 lines
563 B
Python
22 lines
563 B
Python
import os
|
|
|
|
import pkg_resources
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
version="1.0",
|
|
name="auto_subtitle",
|
|
packages=find_packages(),
|
|
py_modules=["auto_subtitle"],
|
|
author="Miguel Piedrafita",
|
|
install_requires=[
|
|
'youtube-dl',
|
|
'whisper @ git+https://github.com/openai/whisper.git@main#egg=whisper'
|
|
],
|
|
description="Automatically generate and embed subtitles into your videos",
|
|
entry_points={
|
|
'console_scripts': ['auto_subtitle=auto_subtitle.cli:main'],
|
|
},
|
|
include_package_data=True,
|
|
)
|