-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmix.exs
More file actions
35 lines (30 loc) · 952 Bytes
/
mix.exs
File metadata and controls
35 lines (30 loc) · 952 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
35
defmodule PersistentStorage.Mixfile do
use Mix.Project
@version "0.10.1"
def project do
[app: :persistent_storage,
version: @version,
elixir: "~> 1.4",
deps: deps(),
description: "Brain dead simple file-based storage for embedded systems",
package: package(),
name: "PersistentStorage",
docs: [
source_ref: "v#{@version}", main: "PersistentStorage",
source_url: "https://github.com/cellulose/persistent_storage",
# main: "extra-readme",
extras: [ "README.md", "CHANGELOG.md"] ]]
end
def application do
[ mod: {PersistentStorage, []} ]
end
defp deps do
[{:ex_doc, "~> 0.12", only: :dev}]
end
defp package do
[ maintainers: ["Garth Hitchens", "Chris Dutton"],
licenses: ["Apache-2.0"],
links: %{github: "https://github.com/cellulose/persistent_storage"},
files: ~w(lib config) ++ ~w(README.md CHANGELOG.md LICENSE mix.exs) ]
end
end