mirror of
https://github.com/karl0ss/bazarr-ai-sub-generator.git
synced 2025-04-26 06:49:22 +01:00
19 lines
505 B
Python
19 lines
505 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
version="1.0",
|
|
name="bazarr-ai-sub-generator",
|
|
packages=find_packages(),
|
|
py_modules=["bazarr-ai-sub-generator"],
|
|
author="Karl Hudgell",
|
|
install_requires=[
|
|
'tqdm',
|
|
'ffmpeg-python'
|
|
],
|
|
description="Automatically generate and embed subtitles into your videos",
|
|
entry_points={
|
|
'console_scripts': ['bazarr-ai-sub-generator=bazarr-ai-sub-generator.cli:main'],
|
|
},
|
|
include_package_data=True,
|
|
)
|