f714e8ae8a
- Add omemo_storage.py: SQLite key/value backend for python-omemo - Rewrite xmpp_client.py OMEMO support: real XEP_0384 plugin subclass with BTBV (Blind Trust Before Verification / TOFU for bots) - Async decrypt in _on_message handler, async encrypt in _send_omemo - MUC messages remain plaintext (OMEMO MUC not widely supported) - base_agent.py: pass data_dir to XMPPClient for OMEMO storage - setup.py: bump omemo extra to slixmpp-omemo>=2.0 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
17 lines
334 B
Python
17 lines
334 B
Python
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name="agents_core",
|
|
version="2.0.0",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
"paho-mqtt>=1.6",
|
|
"slixmpp>=1.8",
|
|
"requests>=2.28",
|
|
],
|
|
extras_require={
|
|
"omemo": ["slixmpp-omemo>=2.0"],
|
|
},
|
|
python_requires=">=3.10",
|
|
)
|