generated from deepgram/oss-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
dvonthenen
committed
Nov 29, 2023
1 parent
45969eb
commit 53ce7ac
Showing
3 changed files
with
23 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,39 +2,41 @@ | |
# Use of this source code is governed by a MIT license that can be found in the LICENSE file. | ||
# SPDX-License-Identifier: MIT | ||
|
||
import setuptools | ||
from setuptools import setup, find_packages | ||
import os.path | ||
|
||
with open( | ||
os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md"), | ||
encoding="utf8", | ||
) as file: | ||
long_description = file.read() | ||
with open("README.md", "r", encoding="utf-8") as fh: | ||
LONG_DESCRIPTION = fh.read() | ||
|
||
setuptools.setup( | ||
DESCRIPTION = ( | ||
"The official Python SDK for the Deepgram automated speech recognition platform." | ||
) | ||
|
||
setup( | ||
name="deepgram-sdk", | ||
description="The official Python SDK for the Deepgram automated speech recognition platform.", | ||
long_description=long_description, | ||
author="Deepgram", | ||
author_email="[email protected]", | ||
url="https://github.com/deepgram/deepgram-python-sdk", | ||
description=DESCRIPTION, | ||
long_description=LONG_DESCRIPTION, | ||
long_description_content_type="text/markdown", | ||
license="MIT", | ||
url="https://github.com/deepgram/deepgram-python-sdk", | ||
author="Luca Todd", | ||
author_email="[email protected]", | ||
classifiers=[ | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python :: 3", | ||
], | ||
keywords="deepgram speech-to-text", | ||
packages=setuptools.find_packages(), | ||
packages=find_packages(), | ||
install_requires=[ | ||
"httpx", | ||
"websockets", | ||
'typing-extensions; python_version < "3.8.0"', | ||
"typing-extensions; python_version < '3.8.0'", | ||
"dataclasses-json", | ||
"dataclasses", | ||
"typing_extensions", | ||
"python-dotenv", | ||
"asyncio", | ||
"aiohttp", | ||
], | ||
keywords=["deepgram", "deepgram speech-to-text"], | ||
classifiers=[ | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Programming Language :: Python :: 3", | ||
], | ||
) |