Packages

Library of common vector functions for use in geometric or graphical calculations.

Current section

Files

Jump to
vector mix.exs
Raw

mix.exs

defmodule Vector.Mixfile do
use Mix.Project
def project do
[app: :vector,
version: "0.2.0",
elixir: "~> 1.2",
description: description,
package: package,
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
test_coverage: [tool: ExCoveralls],
deps: deps]
end
# Configuration for the OTP application
#
# Type "mix help compile.app" for more information
def application do
[applications: [:logger]]
end
defp deps do
[
{:earmark, "~> 0.1", only: :dev},
{:ex_doc, "~> 0.11", only: :dev},
{:excoveralls, "~> 0.4", only: :test}
]
end
defp description do
"""
Library of common vector functions for use in geometric or graphical calculations.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*"],
maintainers: ["Powell Kinney"],
licenses: ["MIT"],
links: %{ "GitHub" => "https://github.com/pkinney/vector_ex",
"Docs" => "https://pkinney.github.io/vector_ex/Vector.html"}
]
end
end