19 lines
505 B
Python
Raw Normal View History

2022-09-28 01:57:08 +01:00
from setuptools import setup, find_packages
setup(
version="1.0",
2024-01-09 10:28:19 +00:00
name="bazarr-ai-sub-generator",
2022-09-28 01:57:08 +01:00
packages=find_packages(),
2024-01-09 10:28:19 +00:00
py_modules=["bazarr-ai-sub-generator"],
author="Karl Hudgell",
2022-09-28 01:57:08 +01:00
install_requires=[
'tqdm',
'ffmpeg-python'
2022-09-28 01:57:08 +01:00
],
description="Automatically generate and embed subtitles into your videos",
entry_points={
2024-01-09 10:28:19 +00:00
'console_scripts': ['bazarr-ai-sub-generator=bazarr-ai-sub-generator.cli:main'],
2022-09-28 01:57:08 +01:00
},
include_package_data=True,
)