generated from deepgram/oss-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 68
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 28, 2023
1 parent
11c293c
commit 6669f2b
Showing
3 changed files
with
32 additions
and
30 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,36 +2,39 @@ | |
# 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( | ||
name='deepgram-sdk', | ||
description='The official Python SDK for the Deepgram automated speech recognition platform.', | ||
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(), | ||
DESCRIPTION = "The official Python SDK for the Deepgram automated speech recognition platform." | ||
|
||
setup( | ||
name="deepgram-sdk", | ||
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", | ||
packages=find_packages(), | ||
install_requires=[ | ||
'httpx', | ||
'websockets', | ||
'typing-extensions; python_version < "3.8.0"', | ||
'dataclasses-json', | ||
'dataclasses', | ||
'typing_extensions', | ||
'python-dotenv', | ||
'asyncio', | ||
'aiohttp' | ||
"httpx", | ||
"websockets", | ||
"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", | ||
], | ||
) |