forked from bluzky/elixlsx-writer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
56 lines (50 loc) · 1.35 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
48
49
50
51
52
53
54
55
56
defmodule Elixlsx2.Mixfile do
use Mix.Project
@source_url "https://github.com/bluzky/elixlsx-writer"
@version "0.3.0"
def project do
[
app: :elixlsx_writer,
version: @version,
elixir: "~> 1.17",
package: package(),
description:
"Elixlsx-writer is a writer for Elixlsx library, supporting writing large data to xlsx file by chunks. So you don't have to load all data into memory before writing to file.",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: docs()
]
end
def application do
[]
end
defp deps do
[
{:elixlsx, "~> 0.6"},
{:credo, "~> 1.7", only: [:dev, :test]},
{:ex_doc, ">= 0.0.0", only: [:dev], runtime: false},
{:dialyxir, "~> 1.3", only: [:dev], runtime: false},
{:benchee, "~> 1.1", only: [:dev], runtime: false},
{:nimble_csv, "~> 1.2", only: [:dev], runtime: false},
{:styler, "~> 0.8", only: [:dev, :test], runtime: false}
]
end
defp docs do
[
extras: ["CHANGELOG.md", "README.md"],
main: "readme",
source_url: @source_url,
source_ref: "v#{@version}"
]
end
defp package do
[
maintainers: ["Dzung Nguyen <bluesky.1289@gmail.com>"],
licenses: ["MIT"],
links: %{
"GitHub" => @source_url
}
]
end
end