Packages

A lightweight and functional TCP socket pool acceptor for use with flux.

Current section

Files

Jump to
nexus mix.exs
Raw

mix.exs

defmodule Nexus.MixProject do
use Mix.Project
def project do
[
app: :nexus,
version: "0.1.0",
elixir: "~> 1.6",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
source_url: "https://github.com/cjfreeze/nexus",
description: """
A lightweight and functional TCP socket pool acceptor for use with flux.
"""
]
end
def application do
[
extra_applications: [:logger]
# mod: {Nexus.Application, []}
]
end
defp deps do
[{:ex_doc, "~> 0.19.1", only: :dev}]
end
defp package do
[
maintainers: [
"Chris Freeze"
],
licenses: ["MIT"],
# These are the default files included in the package
files: ~w(lib .formatter.exs mix.exs README* LICENSE*),
links: %{"GitHub" => "https://github.com/cjfreeze/nexus"}
]
end
end