lex_luthor/mix.exs

42 lines
1 KiB
Elixir
Raw Normal View History

2015-03-06 11:22:23 +13:00
defmodule LexLuthor.Mixfile do
use Mix.Project
def project do
[app: :lex_luthor,
2016-09-05 19:33:22 +12:00
version: "0.1.1",
2015-03-06 11:22:23 +13:00
elixir: "~> 1.0",
2015-03-29 15:20:34 +13:00
description: "LexLuthor is a Lexer in Elixir (say that 10 times fast) which uses macros to generate a reusable lexers. Good times.",
source_url: "https://github.com/jamesotron/lex_luthor",
2017-04-27 08:01:56 +12:00
preferred_cli_env: [inch: :docs],
2015-03-29 15:20:34 +13:00
package: [
contributors: ["James Harton"],
licenses: ["MIT"],
links: %{"Source" => "https://github.com/jamesotron/lex_luthor"}
],
2015-03-06 11:22:23 +13:00
deps: deps]
end
# Configuration for the OTP application
#
# Type `mix help compile.app` for more information
def application do
[applications: [:logger]]
end
# Dependencies can be Hex packages:
#
# {:mydep, "~> 0.3.0"}
#
# Or git/path repositories:
#
# {:mydep, git: "https://github.com/elixir-lang/mydep.git", tag: "0.1.0"}
#
# Type `mix help deps` for more examples and options
defp deps do
2016-09-05 19:37:26 +12:00
[
2017-04-27 08:01:56 +12:00
{:ex_doc, ">= 0.0.0", only: :dev},
{:inch_ex, only: :docs}
2016-09-05 19:37:26 +12:00
]
2015-03-06 11:22:23 +13:00
end
end