From d6015761161b2029c5f52e964f67df389f71dd47 Mon Sep 17 00:00:00 2001 From: Blake Kostner Date: Wed, 7 Feb 2024 14:02:50 -0700 Subject: [PATCH] chore: add package details to mix.exs file --- mix.exs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 2e898b0..de27da1 100644 --- a/mix.exs +++ b/mix.exs @@ -10,7 +10,8 @@ defmodule Lunar.MixProject do elixirc_paths: elixirc_paths(Mix.env()), start_permanent: Mix.env() == :prod, version: "0.1.0", - test_coverage: [tool: ExCoveralls] + test_coverage: [tool: ExCoveralls], + package: package() ] end @@ -37,4 +38,15 @@ defmodule Lunar.MixProject do {:excoveralls, "~> 0.17.1", only: :test} ] end + + defp package do + [ + files: ~w(lib mix.exs .formatter.exs README.md CHANGELOG.md), + licenses: ["UNLICENSED"], + links: %{ + Changelog: "https://github.com/stordco/lunar/releases", + GitHub: "https://github.com/stordco/lunar" + } + ] + end end