This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
59 lines (52 loc) · 2.04 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
import io
import os
import re
import pkg_resources
from setuptools import setup, find_packages
def get_long_description():
base_dir = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(base_dir, "README.md"), encoding="utf-8") as f:
return f.read()
def get_version():
current_dir = os.path.abspath(os.path.dirname(__file__))
version_file = os.path.join(current_dir, "pywhisper", "__init__.py")
with io.open(version_file, encoding="utf-8") as f:
return re.search(r'^__version__ = [\'"]([^\'"]*)[\'"]', f.read(), re.M).group(1)
setup(
name="pywhisper",
py_modules=["pywhisper"],
version=get_version(),
description="openai/whisper speech to text model + extra features",
author="fcakyon",
url="https://github.com/fcakyon/pywhisper",
long_description=get_long_description(),
long_description_content_type="text/markdown",
packages=find_packages(exclude=["tests*"]),
python_requires=">=3.7",
license="MIT",
install_requires=[
str(r)
for r in pkg_resources.parse_requirements(
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
)
],
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="machine-learning, deep-learning, ml, pytorch, speech-to-text, speech, text, nlp, natural-language-processing, openai, whisper",
entry_points = {
'console_scripts': ['pywhisper=pywhisper.transcribe:cli'],
},
include_package_data=True,
extras_require={'dev': ['pytest']},
)