|
|
@@ -0,0 +1,26 @@
|
|
|
+[build-system]
|
|
|
+requires = ["setuptools>=68.0"]
|
|
|
+build-backend = "setuptools.build_meta"
|
|
|
+
|
|
|
+[project]
|
|
|
+name = "hermes-chatto-plugin"
|
|
|
+version = "1.0.0"
|
|
|
+description = "Chatto platform adapter for Hermes Agent"
|
|
|
+requires-python = ">=3.11"
|
|
|
+license = {text = "MIT"}
|
|
|
+authors = [
|
|
|
+ {name = "liv", email = ""},
|
|
|
+]
|
|
|
+dependencies = [
|
|
|
+ "chattolib[realtime]>=0.4.19",
|
|
|
+ "websockets>=13.0",
|
|
|
+]
|
|
|
+
|
|
|
+[project.optional-dependencies]
|
|
|
+dev = [
|
|
|
+ "pytest>=8.0",
|
|
|
+ "pytest-asyncio>=0.24",
|
|
|
+]
|
|
|
+
|
|
|
+[tool.setuptools.packages.find]
|
|
|
+where = ["."]
|