-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (67 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
73 lines (67 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[project]
name = "smallestai"
version = "4.3.0"
description = "Official Python client for the Smallest AI API"
authors = [{ name = "Smallest", email = "support@smallest.ai" }]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.9"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
keywords = [
"smallest",
"smallest.ai",
"tts",
"text-to-speech",
"waves",
"atoms",
]
dependencies = [
"aiohttp",
"aiofiles",
"requests",
"pydub",
"websocket-client",
"urllib3 >= 1.25.3, < 3.0.0",
"python-dateutil >= 2.8.2",
"pydantic >= 2",
"typing-extensions >= 4.7.1",
"audioop-lts; python_version >= '3.13'",
"loguru >= 0.7.0",
"fastapi>=0.115.0",
"httpx>=0.28.1",
"python-dotenv>=1.2.1",
"questionary>=2.1.1",
"rich>=14.2.0",
"tomli>=2.3.0",
"tomli-w>=1.2.0",
"typer>=0.20.0",
"uvicorn>=0.32.0",
"websockets>=14.0",
"openai>=2.14.0",
]
[project.optional-dependencies]
test = [
"jiwer",
"pytest >= 7.2.1",
"pytest-asyncio",
"deepgram-sdk",
"pytest-cov >= 2.8.1",
"tox >= 3.9.0",
"flake8 >= 4.0.0",
"types-python-dateutil >= 2.8.19.14",
"mypy >= 1.5",
]
[project.urls]
Homepage = "https://github.com/smallest-inc/smallest-python-sdk"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["smallest*"]
[project.scripts]
smallestai = "smallestai.cli.main:main"