Browse Source

setup.py updates

Karl Hudgell 4 months ago
parent
commit
77b28df03d
1 changed files with 4 additions and 4 deletions
  1. 4 4
      setup.py

+ 4 - 4
setup.py

@@ -2,10 +2,10 @@ from setuptools import setup, find_packages
 
 setup(
     version="1.0",
-    name="faster_auto_subtitle",
+    name="bazarr-ai-sub-generator",
     packages=find_packages(),
-    py_modules=["auto_subtitle"],
-    author="Sergey Chernyaev",
+    py_modules=["bazarr-ai-sub-generator"],
+    author="Karl Hudgell",
     install_requires=[
         'faster-whisper',
         'tqdm',
@@ -13,7 +13,7 @@ setup(
     ],
     description="Automatically generate and embed subtitles into your videos",
     entry_points={
-        'console_scripts': ['faster_auto_subtitle=auto_subtitle.cli:main'],
+        'console_scripts': ['bazarr-ai-sub-generator=bazarr-ai-sub-generator.cli:main'],
     },
     include_package_data=True,
 )