-
Notifications
You must be signed in to change notification settings - Fork 4
/
mix.exs
47 lines (40 loc) · 1.11 KB
/
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
43
44
45
46
47
defmodule CSVLixir.Mixfile do
use Mix.Project
def project do
[ app: :csvlixir,
version: "2.0.4",
deps: deps(),
description: description(),
package: package(),
name: "CSVLixir",
source_url: "https://github.com/jimm/csvlixir",
homepage_url: "https://github.com/jimm/csvlixir"
]
end
# Configuration for the OTP application
def application do
[]
end
# Returns the list of dependencies in the format:
# { :foobar, "0.1", git: "https://github.com/elixir-lang/foobar.git" }
defp deps do
[{:earmark, "~> 0.2.1", only: :dev},
{:ex_doc, "~> 0.11.4", only: :dev}]
end
def description do
"""
CSVLixir is a CSV reader/writer for Elixir.
Reading from files returns a stream of lists. Reading from strings returns a
list of lists.
The writer transforms a (possibly lazy) list of lists into a stream of CSV
strings. It can also take a single list and return a single CSV string.
"""
end
defp package do
[
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/jimm/csvlixir"},
maintainers: ["Jim Menard"]
]
end
end