-
Notifications
You must be signed in to change notification settings - Fork 17
/
mix.exs
42 lines (34 loc) · 788 Bytes
/
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
defmodule Remodel.Mixfile do
use Mix.Project
@version "0.0.4"
def project do
[
app: :remodel,
version: @version,
elixir: "~> 1.0",
deps: deps(),
# Hex
description: description(),
package: package()
]
end
def application do
[applications: [:logger]]
end
defp description do
"""
Remodel is an Elixir presenter package used to transform data structures.
This is especially useful when a desired representation doesn't match the schema defined within the database.
"""
end
defp deps do
[{:ex_doc, ">= 0.0.0", only: :dev}]
end
defp package do
[
licenses: ["Apache 2.0"],
links: %{"GitHub": "https://github.com/stavro/remodel"},
maintainers: ["Sean Stavropoulos"]
]
end
end