defmodule ExIcal.Mixfile do use Mix.Project def project do [app: :ex_ical, version: "0.0.4", elixir: "~> 1.2", description: "ICalendar parser.", package: package, deps: deps, dialyzer: [plt_add_deps: true], build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, docs: [ main: ExIcal, source_url: "https://github.com/fazibear/export" ] ] end def package do [ maintainers: ["MichaƂ Kalbarczyk"], licenses: ["MIT"], links: %{github: "https://github.com/fazibear/ex_ical"} ] end # Configuration for the OTP application # # Type "mix help compile.app" for more information def application do [applications: [:timex]] end defp deps do [ {:earmark, "~> 0.1", only: :dev}, {:ex_doc, ">= 0.0.0", only: :dev}, {:credo, "~> 0.4.0", only: [:dev, :test]}, {:timex, "~> 1.0"} ] end end