defmodule Exred.Node.Function.Mixfile do use Mix.Project @description "Exred node that executes message handler functions defined through the UI" def project do [ app: :exred_node_function, version: "0.1.0", elixir: "~> 1.5", start_permanent: Mix.env == :prod, deps: deps(), description: @description, package: package() ] end # Run "mix help compile.app" to learn about applications. def application do [ extra_applications: [:logger] ] end # Run "mix help deps" to learn about dependencies. defp deps do [ {:exred_library, "~> 0.1.11"}, {:ex_doc, "~> 0.18.0", only: :dev, runtime: false} ] end defp package do %{ licenses: ["MIT"], maintainers: ["Zsolt Keszthelyi"], links: %{ "GitHub" => "https://github.com/exredorg/exred_node_function", "Exred" => "http://exred.org" }, files: ["lib", "mix.exs", "README.md", "LICENSE"] } end end