defmodule Eai.MixProject do use Mix.Project def project do [ app: :eai, version: "0.1.1", elixir: "~> 1.19", start_permanent: Mix.env() == :prod, deps: deps(), description: "EAI Agent Framework — triple-notation knowledge graphs, agent-browser workflows, and PTY-resilient tooling", package: package(), source_url: "https://github.com/eai/eai", docs: [main: "Eai", extras: ["README.md", "TRANSITION.md"]] ] end def application do [extra_applications: [:logger]] end defp deps do [ {:ex_doc, ">= 0.0.0", only: :dev, runtime: false} ] end defp package do [ licenses: ["MIT"], links: %{"GitHub" => "https://github.com/eai/eai"} ] end end