Current section
Files
Jump to
Current section
Files
agenthub_sdk
mix.exs
mix.exs
defmodule AgenthubSdk.MixProject do
use Mix.Project
def project do
[
app: :agenthub_sdk,
version: "1.0.2",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package(),
docs: docs(),
name: "AgentHub SDK",
source_url: "https://github.com/agenthub/agenthub-sdk"
]
end
def application do
[
extra_applications: [:logger]
]
end
defp deps do
[
{:ex_doc, "~> 0.31", only: :dev, runtime: false},
{:dialyxir, "~> 1.0", only: [:dev], runtime: false}
]
end
defp description do
"Simple interface to make agents runnable on AgentHub"
end
defp package do
[
name: "agenthub_sdk",
licenses: ["ISC"],
links: %{"GitHub" => "https://github.com/agenthub/agenthub-sdk"},
maintainers: ["AgentHub"]
]
end
defp docs do
[
main: "AgenthubSdk",
extras: ["README.md"]
]
end
end