forked from MarcusHoile/rename
-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
44 lines (40 loc) · 902 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
43
44
defmodule Rename.Mixfile do
use Mix.Project
def project do
[
app: :rename,
version: "0.1.0",
elixir: "~> 1.12",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
test_coverage: [tool: ExCoveralls],
preferred_cli_env: [
coveralls: :test,
"coveralls.detail": :test,
"coveralls.post": :test,
"coveralls.html": :test
]
]
end
defp description do
"""
For thoroughly renaming your Elixir projects
"""
end
defp package do
[
licenses: ["MIT"],
maintainers: ["MainShayne233"],
links: %{github: "https://github.com/MainShayne233/rename"}
]
end
defp deps do
[
{:excoveralls, "~> 0.6", only: :test},
{:ex_doc, ">= 0.0.0", only: :dev}
]
end
end