-
Notifications
You must be signed in to change notification settings - Fork 2
/
mix.exs
70 lines (56 loc) · 1.33 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
defmodule BetterParams.Mixfile do
use Mix.Project
@app :better_params
@name "BetterParams"
@version "0.5.0"
@github "https://github.com/sheharyarn/#{@app}"
# NOTE:
# To publish package or update docs, use the `docs`
# mix environment to not include support modules
# that are normally included in the `dev` environment
#
# MIX_ENV=docs hex.publish
#
def project do
[
# Project
app: @app,
version: @version,
elixir: "~> 1.3",
description: description(),
package: package(),
deps: deps(),
# ExDoc
name: @name,
source_url: @github,
homepage_url: @github,
docs: [
main: @name,
canonical: "https://hexdocs.pm/#{@app}",
extras: ["README.md"]
]
]
end
def application do
[applications: []]
end
defp deps do
[
{:plug, ">= 1.0.0" },
{:ex_doc, ">= 0.0.0", only: :docs },
{:inch_ex, ">= 0.0.0", only: :docs },
]
end
defp description do
"Cleaner Plug params for Elixir web applications 🙌"
end
defp package do
[
name: @app,
maintainers: ["Sheharyar Naseer"],
licenses: ["MIT"],
files: ~w(mix.exs lib README.md),
links: %{"Github" => @github}
]
end
end