-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (59 loc) · 1.27 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (59 loc) · 1.27 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "siva"
version = "0.1.0"
description = "Self-Learning Voice Agent for Healthcare Intake"
authors = [
{name = "SIVA Team", email = "team@siva.ai"}
]
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.8"
dependencies = [
"python-dotenv",
"fastapi[all]",
"uvicorn",
"cartesia",
"openai",
"sounddevice",
"numpy",
"scikit-learn",
"pydantic-settings",
"requests>=2.32.4",
"pytest>=8.3.5",
"httpx>=0.28.1",
"pandas>=2.0.3",
"toml>=0.10.2",
"addict>=2.4.0",
"deepdiff>=8.4.2",
"docstring-parser>=0.17.0",
"litellm>=1.75.9",
"tenacity>=9.0.0",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"black",
"isort",
"mypy",
]
[project.urls]
Homepage = "https://github.com/siva-team/siva"
Repository = "https://github.com/siva-team/siva"
[tool.setuptools.packages.find]
where = ["src"]
include = ["siva*", "siva.*"]
[tool.black]
line-length = 88
target-version = ['py38', 'py39', 'py310', 'py311']
[tool.isort]
profile = "black"
line_length = 88
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true