-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathmix.exs
More file actions
48 lines (42 loc) · 1.06 KB
/
mix.exs
File metadata and controls
48 lines (42 loc) · 1.06 KB
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 Datex.MixProject do
use Mix.Project
def project do
[
app: :datex,
version: "2.0.0",
elixir: ">= 1.14.0",
start_permanent: Mix.env() == :prod,
package: package(),
description: description(),
deps: deps()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
defp description do
"""
Human readable date and time library with flexible parsing and formatting.
Supports standard date/time formats and Elixir formats. Features include:
business day calculations, weekday utilities, time ranges, timezone conversion,
and friendly human-readable outputs.
"""
end
defp package do
%{
licenses: ["MIT"],
maintainers: ["Suraj Kumar"],
links: %{"GitHub" => "https://github.com/AltCampus/datex"},
files: ~w(lib mix.exs README* LICENSE*)
}
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:ex_doc, "~> 0.29", only: :dev}
]
end
end