-
Notifications
You must be signed in to change notification settings - Fork 51
/
mix.exs
42 lines (37 loc) · 846 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
defmodule NimbleCSV.Mixfile do
use Mix.Project
@source_url "https://github.com/dashbitco/nimble_csv"
@version "1.2.0"
def project do
[
app: :nimble_csv,
version: @version,
elixir: "~> 1.6",
name: "NimbleCSV",
description: "A simple and fast CSV parsing and dumping library",
deps: deps(),
docs: docs(),
package: package()
]
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
]
end
defp package do
[
licenses: ["Apache-2.0"],
maintainers: ["José Valim"],
links: %{
"Changelog" => "#{@source_url}/blob/master/CHANGELOG.md",
"GitHub" => @source_url
}
]
end
end