File tree Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Expand file tree Collapse file tree 2 files changed +12
-9
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ version = {attr = "deepgram.__version__"}
2222# poetry configuration
2323[tool .poetry ]
2424name = " deepgram"
25- version = " 3.0.0 "
25+ version = " 3.X.Y " # Please update this to the version you are using
2626description = " The official Python SDK for the Deepgram automated speech recognition platform."
2727authors = [
" Deepgram DevRel <[email protected] >" ]
2828license = " MIT"
Original file line number Diff line number Diff line change 44
55from setuptools import setup , find_packages
66import os .path
7+ import sys
8+
9+ if sys .version_info < (3 , 10 ):
10+ sys .exit ("Sorry, Python < 3.10 is not supported" )
711
812with open ("README.md" , "r" , encoding = "utf-8" ) as fh :
913 LONG_DESCRIPTION = fh .read ()
2327 license = "MIT" ,
2428 packages = find_packages (),
2529 install_requires = [
26- "httpx" ,
27- "websockets" ,
28- "dataclasses-json" ,
29- "typing_extensions" ,
30- "python-dotenv" ,
31- "asyncio" ,
32- "aiohttp" ,
33- "verboselogs" ,
30+ "httpx>=0.25.2" ,
31+ "websockets>=12.0" ,
32+ "dataclasses-json>=0.6.3" ,
33+ "typing_extensions>=4.9.0" ,
34+ "asyncio>=3.4.3" ,
35+ "aiohttp>=3.9.1" ,
36+ "verboselogs>=1.7" ,
3437 ],
3538 keywords = ["deepgram" , "deepgram speech-to-text" ],
3639 classifiers = [
You can’t perform that action at this time.
0 commit comments