-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmix.exs
More file actions
34 lines (29 loc) · 719 Bytes
/
mix.exs
File metadata and controls
34 lines (29 loc) · 719 Bytes
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
defmodule Burette.Mixfile do
use Mix.Project
def project do
[
app: :burette,
version: "0.1.0",
elixir: "~> 1.3",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
name: "Burette",
description: "Library to efficiently generate random data for testing",
package: package(),
deps: deps()]
end
def application do
[]
end
defp deps do
[
{:earmark, "~> 1.0", only: :dev},
{:ex_doc, "~> 0.14", only: :dev}]
end
defp package do
[
files: ~w/mix.exs lib README.md/,
maintainers: ["Charlotte Lorelei Oliveira"],
links: %{"Github" => "https://github.com/HackerExperience/burette"}]
end
end