defmodule AgentPushKit.Mixfile do use Mix.Project def project do [ app: :agent_push_kit, version: "0.1.0", elixir: "~> 1.18", build_embedded: Mix.env() == :prod, start_permanent: Mix.env() == :prod, package: package(), description: """ The complete Agent Push Kit REST API. Application event ingestion uses an organization key beginning with `apk_`. Authenticated user operations accept either an Agent Push Kit login JWT or an agent access token beginning with `apt_`. """, deps: deps() ] end # Configuration for the OTP application # # Type "mix help compile.app" for more information def application do # Specify extra applications you'll use from Erlang/Elixir [extra_applications: [:logger]] end # Dependencies can be Hex packages: # # {:my_dep, "~> 0.3.0"} # # Or git/path repositories: # # {:my_dep, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.3.0"} # # Type "mix help deps" for more examples and options defp deps do [ {:tesla, "~> 1.14"}, {:ex_doc, "~> 0.37.3", only: :dev, runtime: false}, {:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false} ] end defp package do [ name: "agent_push_kit", files: ~w(.formatter.exs config lib mix.exs README* LICENSE*), licenses: ["MIT"], links: %{"Website" => "https://agentpushkit.com", "GitHub" => "https://github.com/JustinBStrong/agent-push-kit-elixir"}, maintainers: ["Justin Strong"], ] end end