Current section
Files
Jump to
Current section
Files
inner_cotton
mix.exs
mix.exs
defmodule InnerCotton.Mixfile do
use Mix.Project
def project do
[
app: :inner_cotton,
build_embedded: Mix.env == :prod,
deps: deps(),
description: "Elixir Lint & test collection.",
dialyzer: [
ignore_warnings: "dialyzer.ignore-warnings",
],
elixir: "~> 1.4",
package: package(),
start_permanent: Mix.env == :prod,
version: "0.1.0",
# Docs
docs: [
main: "readme",
extras: ["README.md"],
],
homepage_url: "https://github.com/ne-sachirou/inner_cotton",
name: "Inner_Cotton",
source_url: "https://github.com/ne-sachirou/inner_cotton",
]
end
def application, do: [extra_applications: []]
defp deps do
[
{:credo, "~> 0.8", runtime: false},
{:dialyxir, "~> 0.5", runtime: false},
{:ex_doc, "~> 0.16", only: :dev, runtime: false},
{:inch_ex, "~> 0.5", runtime: false},
{:propcheck, "~> 1.0"},
]
end
def package do
[
files: ["LICENSE", "README.md", "mix.exs", "lib"],
licenses: ["GPL-3.0"],
links: %{
"GitHub": "https://github.com/ne-sachirou/inner_cotton",
},
maintainers: ["ne_Sachirou <utakata.c4se@gmail.com>"],
name: :inner_cotton,
]
end
end