-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
48 lines (43 loc) · 1.09 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
defmodule BitFieldSet.Mixfile do
use Mix.Project
def project do
[
app: :bit_field_set,
version: "1.2.3",
elixir: "~> 1.2",
test_pattern: "*_{test,eqc}.exs",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
]
end
def application() do
[applications: [:logger]]
end
defp description() do
"""
Store and manipulate a set of bit flags, mostly used for syncing the state
between peers in a peer to peer network, such as BitTorrent.
"""
end
def package() do
[
files: ["lib", "mix.exs", "README*", "LICENSE"],
maintainers: ["Martin Gausby"],
licenses: ["Apache 2.0"],
links: %{
"GitHub" => "https://github.com/gausby/bit_field_set",
"Issues" => "https://github.com/gausby/bit_field_set/issues"
}
]
end
defp deps() do
[
{:ex_doc, "~> 0.20.0", only: :dev},
{:eqc_ex, "~> 1.4.2", only: [:test, :dev]},
{:benchfella, "~> 0.3.4", only: :dev}
]
end
end