Current section
Files
Jump to
Current section
Files
nimble_csv
mix.exs
mix.exs
defmodule NimbleCSV.Mixfile do
use Mix.Project
@source_url "https://github.com/dashbitco/nimble_csv"
@version "1.3.0"
def project do
[
app: :nimble_csv,
version: @version,
elixir: "~> 1.15",
name: "NimbleCSV",
description: "A simple and fast CSV parsing and dumping library",
deps: deps(),
docs: docs(),
package: package()
]
end
def cli do
[
preferred_envs: [
docs: :docs,
"hex.publish": :docs
]
]
end
defp deps do
[
{:ex_doc, "~> 0.18", only: :docs},
{:benchee, "~> 1.0", only: :dev}
]
end
defp docs do
[
main: "NimbleCSV",
source_ref: "v#{@version}",
source_url: @source_url,
extras: [
"CHANGELOG.md"
]
]
end
defp package do
[
licenses: ["Apache-2.0"],
maintainers: ["José Valim"],
links: %{
"Changelog" => "https://hexdocs.pm/nimble_csv/changelog.html",
"GitHub" => @source_url
}
]
end
end