-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
78 lines (71 loc) · 1.59 KB
/
Copy pathpyproject.toml
File metadata and controls
78 lines (71 loc) · 1.59 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
74
75
76
77
78
[project]
name = "superai"
version = "0.1.0"
description = "SuperAI - Intelligent Multi-Model AI Orchestration Platform"
requires-python = ">=3.10"
dependencies = [
"typer>=0.12",
"rich>=13.0",
"pydantic>=2.0",
"sqlalchemy>=2.0",
"pgvector>=0.3",
"psycopg[binary]>=3.1",
"cryptography>=42.0",
"zstandard>=0.22",
"pyyaml>=6.0",
]
[project.optional-dependencies]
providers = [
"openai>=1.0",
"anthropic>=0.30",
"google-generativeai>=0.7",
"requests>=2.31",
]
embeddings = [
"sentence-transformers>=3.0",
]
data = [
"databao-agent>=0.1",
]
web = [
"fastapi>=0.110",
"uvicorn[standard]>=0.27",
]
vector = [
"faiss-cpu>=1.7",
]
dev = [
"pytest>=8.0",
"pytest-timeout>=2.4",
"httpx>=0.27",
]
docs = [
"pypdf>=4.0",
]
ingest = [
"pypdf>=4.0",
]
[tool.pytest.ini_options]
markers = [
"unit: fast offline unit tests (no multi-cli boards)",
"integration: slower multi-cli / orchestrator tests",
]
testpaths = ["tests"]
[project.scripts]
superai = "scli.main:main"
# Host CLIs (git, gh, aws, claude, …) are NOT Python deps — use:
# superai host-tools check|install
# scripts/bootstrap.ps1 | scripts/bootstrap.sh
# Optional post-install: SUPERAI_AUTO_HOST_TOOLS=1 (dry-run) or =install
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["core", "core.superai_agent", "scli"]
[tool.setuptools.package-dir]
"core" = "src/core"
"core.superai_agent" = "src/core/superai_agent"
"scli" = "src/cli"
[tool.setuptools.package-data]
scli = ["static/pwa/*"]
core = ["data/*"]