-
Notifications
You must be signed in to change notification settings - Fork 16
/
mix.exs
32 lines (29 loc) · 872 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
Code.ensure_loaded?(Hex) and Hex.start
defmodule Chronos.Mixfile do
use Mix.Project
def project do
[
app: :chronos,
version: "1.8.0",
elixir: ">= 1.0.0",
deps: deps(),
package: [
files: ["lib", "mix.exs", "README*", "LICENSE*"],
contributors: ["Johnny Winn"],
licenses: ["Apache 2.0"],
links: %{ "GitHub" => "https://github.com/nurugger07/chronos" },
maintainers: ["Johnny Winn"]
],
name: "Chronos",
source_url: "https://github.com/nurugger07/chronos",
docs: [main: "Chronos", # The main page in the docs
extras: ["README.md"]],
description: """
An Elixir library for handling dates. It can be used to quickly determine a date. In a human readable format.
"""
]
end
def deps do
[{:ex_doc, ">= 0.0.0", only: :dev}]
end
end