Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Exfasta.Mixfile do
use Mix.Project
@version "1.0.0"
@github "https://github.com/nscyclone/exfasta"
def project do
[app: :exfasta,
version: @version,
elixir: "~> 1.0",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env == :prod,
name: "Exfasta",
description: description(),
package: package(),
source_url: @github,
docs: [extras: ["README.md"],
main: "README",
source_ref: "v#{@version}",
source_url: @github],
deps: deps()]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:dialyxir, "~> 0.4", only: [:dev], runtime: false},
{:ex_doc, "~> 0.14", only: [:dev]},
{:earmark, "~> 1.0", only: [:dev]}]
end
defp description do
"A simple module for working with FASTA-formatted strings."
end
defp package do
[maintainers: ["nscyclone"],
files: ["lib", "mix.exs", "README.md", "LICENSE"],
licenses: ["MIT"],
links: %{"Github" => @github}]
end
end