Packages

CSV handling library for Elixir.

Current section

Files

Jump to
cesso mix.exs
Raw

mix.exs

defmodule Cesso.Mixfile do
use Mix.Project
def project do
[ app: :cesso,
version: "0.1.3",
elixir: "~> 0.15.0",
package: package,
description: "CSV handling library for Elixir." ]
end
defp package do
[ contributors: ["meh"],
licenses: ["WTFPL"],
links: %{"GitHub" => "https://github.com/meh/cesso"} ]
end
end