-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (37 loc) · 983 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (37 loc) · 983 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "akari-cli"
version = "0.1.8"
authors = [
{ name="akariwill", email="mwildjrs23@gmail.com" },
]
description = "Akari Watanabe AI Assistant - Voice-first CLI & Web Assistant"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"anthropic>=0.39.0",
"httpx>=0.27.0",
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"pydantic>=2.0.0",
"websockets>=13.0",
"playwright>=1.40.0",
"pyyaml>=6.0",
"rich>=14.3.3",
"python-dotenv>=1.0.1",
]
[project.scripts]
akari-server = "akari_cli.server:main"
akari = "akari_cli.akari_cli:main"
[tool.setuptools]
packages = ["akari_cli"]
include-package-data = true
[tool.setuptools.package-data]
"akari_cli" = ["data/**/*", "templates/**/*"]