-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpyproject.toml
107 lines (98 loc) · 2.48 KB
/
pyproject.toml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[project]
name = "hume"
[tool.poetry]
name = "hume"
version = "0.7.7"
description = "A Python SDK for Hume AI"
readme = "README.md"
authors = []
keywords = [
"hume",
"ai",
"evi",
"empathic",
"multimodal",
"expression",
"analysis",
"sentiment",
"voice",
"recognition",
"detection",
"emotion",
"interface",
"speech",
"audio",
"vision",
"expressive",
"embeddings",
"communication",
"learning"
]
license = "MIT"
classifiers = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
"License :: OSI Approved :: MIT License"
]
packages = [
{ include = "hume", from = "src"}
]
[project.urls]
Documentation = 'https://dev.hume.ai'
Homepage = 'https://www.hume.ai/'
Repository = 'https://github.com/HumeAI/hume-python-sdk'
[tool.poetry.dependencies]
python = ">=3.9,<4"
aiofiles = "^24.1.0"
eval-type-backport = "^0.2.0"
httpx = ">=0.21.2"
jupyter = { version = "^1.0.0", optional = true}
pydantic = ">= 1.9.2"
pydantic-core = "^2.18.2"
pydub = { version = "^0.25.1", optional = true}
simpleaudio = { version = "^1.0.4", optional = true}
sounddevice = { version = "^0.4.6", optional = true}
typing_extensions = ">= 4.0.0"
websockets = "12.0"
[tool.poetry.dev-dependencies]
mypy = "1.0.1"
pytest = "^7.4.0"
pytest-asyncio = "^0.23.5"
python-dateutil = "^2.9.0"
types-python-dateutil = "^2.9.0.20240316"
covcheck = { version = "^0.4.3", extras = ["toml"]}
pydocstyle = "^6.1.1"
pydub-stubs = "^0.25.1"
pylint = "^2.16.2"
pytest-cov = "^4.0.0"
ruff = "^0.5.6"
semver = "^2.13.0"
testbook = "^0.4.2"
types-aiofiles = "^24.1.0.20240626"
[tool.pytest.ini_options]
testpaths = [ "tests" ]
asyncio_mode = "auto"
[tool.mypy]
plugins = ["pydantic.mypy"]
[tool.ruff]
line-length = 120
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.extras]
examples=["jupyter"]
microphone=["pydub", "simpleaudio", "sounddevice"]
legacy=["pydub"]