-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 847 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 847 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
"""Minimal setup.py for editable installs."""
from setuptools import setup, find_packages
setup(
name="risklab",
version="0.1.0",
description=(
"A controlled multi-agent interaction framework for instantiating, "
"probing, and measuring emergent social risks in LLM-based agent "
"collectives. Supports MCP tools and Agent Skills."
),
author="Yue Huang et al.",
packages=find_packages(),
python_requires=">=3.9",
install_requires=[
"pyyaml>=6.0",
],
extras_require={
"openai": ["openai>=1.0"],
"anthropic": ["anthropic>=0.20"],
"all_llm": ["openai>=1.0", "anthropic>=0.20"],
"mcp": ["mcp>=1.0.0"], # Model Context Protocol support
"all": ["openai>=1.0", "anthropic>=0.20", "mcp>=1.0.0"],
"dev": ["pytest", "ruff"],
},
)