-
Notifications
You must be signed in to change notification settings - Fork 15
/
mix.exs
53 lines (47 loc) · 1.06 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
defmodule DirWalker.Mixfile do
use Mix.Project
@moduledoc """
DirWalker lazily traverses one or more directory trees, depth first,
returning successive file names. Provides both a `next()` and
a Stream-based API.
Directory names may optionally be returned. The File.Stat structure
associated with the file name may also optionally be returned.
"""
def project do
[
app: :dir_walker,
version: "0.0.8",
elixir: ">= 1.5.0",
deps: deps(),
description: @moduledoc,
package: package()
]
end
def application do
[applications: [:logger]]
end
defp package do
[
files: [
"lib",
"mix.exs",
"README.md"
],
contributors: [
"Dave Thomas <dave@pragdave.me>",
"Booker C. Bense <bbense@gmail.com>"
],
licenses: [
"Same as Elixir"
],
links: %{
"GitHub" => "https://github.com/pragdave/dir_walker"
},
]
end
def deps do
[
{:ex_doc, "~> 0.5", only: :dev},
]
end
end