25 lines
588 B
Python
25 lines
588 B
Python
![]() |
import os
|
||
|
|
||
|
import pkg_resources
|
||
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name="whisper",
|
||
|
py_modules=["whisper"],
|
||
|
version="1.0",
|
||
|
description="",
|
||
|
author="OpenAI",
|
||
|
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': ['whisper=whisper.transcribe:cli'],
|
||
|
},
|
||
|
include_package_data=True,
|
||
|
extras_require={'dev': ['pytest']},
|
||
|
)
|