-
Notifications
You must be signed in to change notification settings - Fork 57
/
mix.exs
42 lines (37 loc) · 899 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
38
39
40
41
42
Code.ensure_loaded?(Hex) and Hex.start()
defmodule Inflex.Mixfile do
use Mix.Project
@source_url "https://github.com/nurugger07/inflex"
def project do
[
app: :inflex,
version: "2.0.0",
elixir: ">= 1.0.0",
deps: deps(),
package: [
files: ["lib", "mix.exs", "README*", "LICENSE*"],
contributors: ["Johnny Winn"],
licenses: ["Apache-2.0"],
links: %{"GitHub" => @source_url},
maintainers: ["Johnny Winn"]
],
name: "Inflex",
docs: [
extras: ["README.md"],
main: "Inflex",
source_url: @source_url,
api_references: false,
extra_section: []
],
description: """
An Elixir library for handling word inflections.
"""
]
end
def application do
[]
end
def deps do
[{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}]
end
end