setup.py 531 B

12345678910111213141516171819
  1. from setuptools import setup, find_packages
  2. setup(
  3. version="1.0",
  4. name="bazarr-ai-sub-generator",
  5. packages=find_packages(),
  6. py_modules=["bazarr-ai-sub-generator"],
  7. author="Karl Hudgell",
  8. install_requires=[
  9. 'faster-whisper',
  10. 'tqdm',
  11. 'ffmpeg-python'
  12. ],
  13. description="Automatically generate and embed subtitles into your videos",
  14. entry_points={
  15. 'console_scripts': ['bazarr-ai-sub-generator=bazarr-ai-sub-generator.cli:main'],
  16. },
  17. include_package_data=True,
  18. )