Skip to content
This repository has been archived by the owner on Aug 21, 2022. It is now read-only.

Commit

Permalink
Add hex package definition
Browse files Browse the repository at this point in the history
[ci skip]
  • Loading branch information
edgurgel committed Aug 23, 2014
1 parent 0c7d471 commit fa0030e
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,14 +1,25 @@
defmodule Bertex.Mixfile do
use Mix.Project

@description """
Elixir BERT encoder/decoder
"""

def project do
[ app: :bertex,
version: "1.2.0",
elixir: "~> 0.14.2 or ~> 0.15.0",
name: "Bertex",
description: @description,
package: package,
deps: [] ]
end

def application do
[]
def application, do: []

defp package do
[ contributors: ["Eduardo Gurgel Pinho"],
licenses: ["MIT"],
links: [ { "Github", "https://github.com/edgurgel/bertex" } ] ]
end
end

0 comments on commit fa0030e

Please sign in to comment.