forked from yinruiqing/pyannote-whisper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 792 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import os
import pkg_resources
from setuptools import setup, find_packages
setup(
name="pyannote-whisper",
py_modules=["pyannote-whisper"],
version="1.0",
description="Speech Recognition plus diarization",
readme="README.md",
python_requires=">=3.7",
author="Ruiqing",
url="https://github.com/yinruiqing/pyannote-whisper",
license="MIT",
packages=find_packages(exclude=["tests*"]),
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
entry_points={
'console_scripts': ['pyannote-whisper=pyannote_whisper.cli.transcribe:cli'],
},
include_package_data=True,
extras_require={'dev': ['pytest']},
)