forked from deepgram/deepgram-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.17 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.17 KB
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
# Copyright 2023 Deepgram SDK contributors. All Rights Reserved.
# Use of this source code is governed by a MIT license that can be found in the LICENSE file.
# SPDX-License-Identifier: MIT
from setuptools import setup, find_packages
import os.path
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
DESCRIPTION = (
"The official Python SDK for the Deepgram automated speech recognition platform."
)
setup(
name="deepgram-sdk",
author="Deepgram",
author_email="devrel@deepgram.com",
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",
"dataclasses-json",
"typing_extensions",
"python-dotenv",
"asyncio",
"aiohttp",
"verboselogs",
],
keywords=["deepgram", "deepgram speech-to-text"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)