forked from shashikg/WhisperS2T
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 752 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open("requirements.txt", "r", encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="whisper_s2t",
version="1.3.0",
description="An Optimized Speech-to-Text Pipeline for the Whisper Model.",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.8",
author="Shashi Kant Gupta",
url="https://github.com/shashikg/WhisperS2T",
license="MIT",
packages=find_packages(exclude=["tests*"]),
install_requires=requirements,
package_data={
'': ['assets/*'],
},
include_package_data=True,
)