Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ version = {attr = "deepgram.__version__"}
# poetry configuration
[tool.poetry]
name = "deepgram"
version = "3.0.0"
version = "3.X.Y" # Please update this to the version you are using
description = "The official Python SDK for the Deepgram automated speech recognition platform."
authors = ["Deepgram DevRel <devrel@deepgram.com>"]
license = "MIT"
Expand Down
19 changes: 11 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

from setuptools import setup, find_packages
import os.path
import sys

if sys.version_info < (3, 10):
sys.exit("Sorry, Python < 3.10 is not supported")

with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
Expand All @@ -23,14 +27,13 @@
license="MIT",
packages=find_packages(),
install_requires=[
"httpx",
"websockets",
"dataclasses-json",
"typing_extensions",
"python-dotenv",
"asyncio",
"aiohttp",
"verboselogs",
"httpx>=0.25.2",
"websockets>=12.0",
"dataclasses-json>=0.6.3",
"typing_extensions>=4.9.0",
"asyncio>=3.4.3",
"aiohttp>=3.9.1",
"verboselogs>=1.7",
],
keywords=["deepgram", "deepgram speech-to-text"],
classifiers=[
Expand Down