forked from nurugger07/inflex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mix.exs
37 lines (33 loc) · 883 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
Code.ensure_loaded?(Hex) and Hex.start
defmodule Inflex.Mixfile do
use Mix.Project
def project do
[
app: :inflex,
version: "1.8.1",
elixir: ">= 1.6.0",
deps: deps(),
package: [
files: ["lib", "mix.exs", "README*", "LICENSE*"],
contributors: ["Johnny Winn"],
licenses: ["Apache 2.0"],
links: %{ "GitHub" => "https://github.com/nurugger07/inflex" },
maintainers: ["Johnny Winn"]
],
name: "Inflex",
source_url: "https://github.com/nurugger07/inflex",
docs: [main: "Inflex", # The main page in the docs
extras: ["README.md"]],
description: """
An Elixir library for handling word inflections.
""",
]
end
# Configuration for the OTP application
def application do
[]
end
def deps do
[{:ex_doc, ">= 0.0.0", only: :dev}]
end
end