mix: published

This commit is contained in:
Eishun Kondoh 2019-06-14 23:57:12 +09:00
parent b895439334
commit 1ae2b3ebb8
2 changed files with 17 additions and 1 deletions

15
mix.exs
View file

@ -1,11 +1,17 @@
defmodule Tres.Mixfile do
use Mix.Project
@description """
OpenFlow controller library for Elixir
"""
def project do
[
app: :tres,
version: "0.1.0",
description: @description,
elixir: "~> 1.8",
package: package(),
start_permanent: Mix.env() == :prod,
compilers: [:erlang] ++ Mix.compilers(),
deps: deps(),
@ -157,4 +163,13 @@ defmodule Tres.Mixfile do
]
]
end
defp package do
[
maintainers: ["Eishun Kondoh"],
licenses: ["SUSHI-WARE", "Apache 2.0"],
links: %{"GitHub" => "https://github.com/shun159/tres"},
files: ~w(.formatter.exs mix.exs README.md lib priv src)
]
end
end