Add one-line installer and pip extras

- install.sh: One-line installer with options
- Pip extras: [server], [storage], [all]
- Updated README with install instructions
This commit is contained in:
2026-03-13 03:58:53 +00:00
parent 25bf417e20
commit fbecbdda19
3 changed files with 284 additions and 4 deletions
+11
View File
@@ -32,6 +32,17 @@ dependencies = [
]
[project.optional-dependencies]
server = [
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
"jinja2>=3.1.0",
]
storage = [
"boto3>=1.35.0",
]
all = [
"opus-orchestrator-ai[server,storage]",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",