-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmix.exs
48 lines (43 loc) · 1.13 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
defmodule Jalaali.Mixfile do
use Mix.Project
@version "0.4.1"
def project do
[
app: :jalaali,
version: @version,
elixir: "~> 1.6",
build_embedded: Mix.env() == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
docs: [
source_ref: "v#{@version}",
main: "readme",
canonical: "http://hexdocs.pm/jalaali",
source_url: "https://github.com/jalaali/elixir-jalaali",
extras: ["README.md"]
]
]
end
defp deps do
[
{:ex_doc, "~> 0.29", only: :dev, runtime: false},
{:dialyxir, "~> 1.3", only: [:dev, :test], runtime: false}
]
end
defp description do
"""
Elixir Shamsi calendar. A Jalaali (Jalali, Persian, Khorshidi, Shamsi) calendar system implemention for Elixir.
"""
end
defp package do
[
name: :jalaali,
files: ["lib", "mix.exs", "README*", "LICENSE"],
maintainers: ["Alisina Bahadori", "Shahryar Tavakkoli"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/jalaali/elixir-jalaali"}
]
end
end