-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (29 loc) · 821 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 find_packages, setup
setup(
name="transcribify",
version="0.1.0",
description="A pipeline to transcribe audio, generate embeddings, and store/query data in LanceDB.",
author="Mert Cobanov",
author_email="mertcobanov@gmail.com",
url="https://github.com/cobanov/transcribify",
packages=find_packages(),
install_requires=[
"whisper",
"sentence-transformers",
"lancedb",
"openai",
"yt-dlp",
"click",
],
entry_points={
"console_scripts": [
"transcribify=transcribify.cli:cli",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.7",
)