defmodule StopFloating.MixProject do use Mix.Project def project do [ app: :stop_floating, version: "0.1.0", elixir: "~> 1.7-dev", start_permanent: Mix.env() == :prod, deps: deps(), name: "stop_floating", description: description(), package: package(), source_url: "https://github.com/devonestes/stop_floating" ] end # Run "mix help compile.app" to learn about applications. def application do [] end # Run "mix help deps" to learn about dependencies. defp deps do [{:ex_doc, ">= 0.0.0", only: :dev}] end defp description do "Find where you're using floats in your Elixir code so you can replace them!" end defp package() do [ name: "stop_floating", files: ["lib", "mix.exs", "README*"], maintainers: ["Devon Estes"], licenses: [], links: %{"GitHub" => "https://github.com/devonestes/stop_floating"} ] end end