-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
30 lines (27 loc) · 887 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
29
30
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="whisperstream",
version="0.1.1",
description="Thin wrapper around OpenAI Whisper API enabling streaming transcription",
long_description=long_description, # Optional
long_description_content_type="text/markdown",
url="https://github.com/gkorepanov/whisperstream",
author="George Korepanov",
author_email="gkorepanov.gk@gmail.com",
packages=find_packages(),
python_requires=">=3.7",
install_requires=[
"openai>=1.30.4,<2.0.0",
"iso639-lang~=2.2.2",
"click~=8.1.7",
"ffmpeg-python~=0.2.0",
],
entry_points={
'console_scripts': [
'transcribe = whisperstream.cmd:transcribe',
],
},
)