defmodule ExBin.MixProject do use Mix.Project def project do [ app: :ex_bin, version: "0.2.2", elixir: "~> 1.7", start_permanent: Mix.env() == :prod, deps: deps(), test_coverage: [tool: ExCoveralls], preferred_cli_env: [ coveralls: :test, "coveralls.detail": :test, "coveralls.post": :test, "coveralls.html": :test ], # Docs name: "ExBin", package: package(), source_url: "https://github.com/zcking/ex_bin", description: description() ] 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 [ {:ex_doc, "~> 0.19", only: :dev, runtime: false}, {:excoveralls, "~> 0.10", only: :test} ] end defp package do [ files: ["lib", "mix.exs", "README.md", "LICENSE"], maintainers: ["Zachary King"], licenses: ["MIT"], links: %{"Github" => "https://github.com/zcking/ex_bin"} ] end defp description do "Binary helpers for dealing with bits and bytes in Elixir." end end