-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
51 lines (45 loc) · 1.11 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
defmodule Numero.Mixfile do
use Mix.Project
@version "0.4.0"
def project do
[
app: :numero,
version: @version,
elixir: "~> 1.6",
description: description(),
package: package(),
deps: deps(),
# Docs
name: "Numero",
docs: [
source_url: "https://github.com/alisinabh/Numero",
homepage_url: "https://github.com/alisinabh/Numero",
# The main page in the docs
main: "readme",
extras: ["README.md"]
]
]
end
def application do
# Specify extra applications you'll use from Erlang/Elixir
[extra_applications: [:logger]]
end
defp deps do
[{:ex_doc, "~> 0.30.6", only: :dev, runtime: false}]
end
defp description do
"""
A micro library for converting non-english digits.
"""
end
defp package do
# These are the default files included in the package
[
name: :numero,
files: ["lib", "mix.exs", "README.md", "LICENSE*"],
maintainers: ["Alisina Bahadori"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/alisinabh/Numero"}
]
end
end