setup.py 505 B

123456789101112131415161718
  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. 'tqdm',
  10. 'ffmpeg-python'
  11. ],
  12. description="Automatically generate and embed subtitles into your videos",
  13. entry_points={
  14. 'console_scripts': ['bazarr-ai-sub-generator=bazarr-ai-sub-generator.cli:main'],
  15. },
  16. include_package_data=True,
  17. )