-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (73 loc) · 1.42 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
[project]
name = "aact"
description = "An actor model library for multi-agent/environment interaction in Python based on Redis."
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.8.2",
"redis>=5.0.8",
"requests>=2.32.3",
"aiofiles>=24.1.0",
"aiostream>=0.5.2",
"rq>=1.16.2",
"typer>=0.12.5",
"numpy>=1.24.0",
"tomlkit>=0.13.0; python_version <= '3.10'",
"aiohttp>=3.10.5",
]
dynamic = ["version"]
[tool.hatch]
version = {path = "src/aact/__about__.py"}
[project.optional-dependencies]
typing = [
"mypy>=0.910",
"types-requests>=2.32.0.20240712",
"types-aiofiles>=24.1.0.20240626",
]
vision = [
"opencv-python"
]
audio = [
"pyaudio >= 0.2.14",
"types-pyaudio >= 0.2.16.20240516",
]
google = [
"google-cloud-speech>=2.27.0",
"google-cloud-texttospeech>=2.17.2",
]
gui = [
"nicegui",
"pywebview>=3.4.0",
]
ai = [
"openai"
]
doc = [
"pdoc>=15.0.0, <16.0.0",
"mike",
"mkdocs-exclude",
"mkdocs-material[imaging]",
"mkdocstrings[python]",
"mkdocs-material[doc]>=9.5.43",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"mypy>=1.11.2",
"types-pyaudio",
"types-aiofiles",
"types-requests",
"pytest"
]
[tool.mypy]
plugins = [
"pydantic.mypy",
"pydantic.v1.mypy",
]
exclude = [
"docs"
]
[project.scripts]
aact = 'aact.cli:app'