defmodule Dtds.Mixfile do use Mix.Project def project do [app: :dtds, version: "0.1.0", elixir: "~> 1.3", description: description(), package: package(), build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, deps: deps()] end # Configuration for the OTP application # # Type "mix help compile.app" for more information def application do [ applications: [:logger], mod: {Dtds, []} ] end defp deps do [ {:ex_doc, "~> 0.13.0"} ] end defp description do """ This app provides a distributed topic discovery service. Producers and consumers of topics register themselves with the service and can query this information. """ end defp package do [ name: :dtds, maintainers: ["Faiz Ilahi Kothari"], licenses: ["Apache 2.0"], links: %{"GitHub" => "https://github.com/faizoff/dtds"} ] end end