22 lines
532 B
TOML
22 lines
532 B
TOML
|
|
[build-system]
|
||
|
|
requires = ["setuptools"]
|
||
|
|
build-backend = "setuptools.build_meta"
|
||
|
|
|
||
|
|
[project]
|
||
|
|
name = "hermes-identity-plugin"
|
||
|
|
version = "1.0.0"
|
||
|
|
description = "Identity mapping plugin for Hermes Agent"
|
||
|
|
authors = [{name = "@gortium"}]
|
||
|
|
license = {text = "MIT"}
|
||
|
|
requires-python = ">=3.11"
|
||
|
|
dependencies = []
|
||
|
|
|
||
|
|
[project.entry-points.'hermes_agent.plugins']
|
||
|
|
identity = "hermes_identity_plugin:register"
|
||
|
|
|
||
|
|
[tool.setuptools.packages.find]
|
||
|
|
include = ["hermes_identity_plugin*", "docs*"]
|
||
|
|
|
||
|
|
[tool.setuptools.package-data]
|
||
|
|
"*" = ["*.json", "*.yaml"]
|