From 3416ca520d6029876ca048ae3e65a2ca35544afa Mon Sep 17 00:00:00 2001 From: Patrick Detlefsen Date: Mon, 1 Oct 2018 15:41:45 +0100 Subject: [PATCH] 1.0 --- mix.exs | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index a162f4f..6b36da5 100644 --- a/mix.exs +++ b/mix.exs @@ -1,13 +1,28 @@ defmodule FuzzyCompare.MixProject do use Mix.Project + @github_url "https://github.com/patrickdet/fuzzy_compare" + def project do [ app: :fuzzy_compare, - version: "0.1.0", + version: "1.0.0", elixir: "~> 1.7", start_permanent: Mix.env() == :prod, - deps: deps() + deps: deps(), + description: "A fuzzy string comparison library for Elixir", + source_url: @github_url, + homepage_url: @github_url, + package: [ + maintainers: ["Patrick Detlefsen"], + licenses: ["MIT"], + links: %{ + "GitHub" => @github_url + } + ], + docs: [ + main: "FuzzyCompare" + ] ] end