mirror of
https://github.com/Nezumi-2711/auto-subtitle.git
synced 2026-09-22 13:38:41 +00:00
22 lines
561 B
Python
22 lines
561 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+ssh://git@github.com/openai/whisper@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,
|
|
)
|