summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
authorHubert Chathi <hubert@uhoreg.ca>2019-09-25 20:20:38 -0400
committerHubert Chathi <hubert@uhoreg.ca>2019-09-25 20:20:38 -0400
commit111afde3756d7a7a535e33337f891b1a8cf09dfd (patch)
treed02d3f8128c157263c3559ee49dbcd573cbd6340 /mix.exs
parentadd license file (diff)
comment/doc improvements
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs8
1 files changed, 8 insertions, 0 deletions
diff --git a/mix.exs b/mix.exs
index 796acdb..3bc2cbd 100644
--- a/mix.exs
+++ b/mix.exs
@@ -4,6 +4,7 @@ defmodule PolyjuiceClient.MixProject do
def project do
[
app: :polyjuice_client,
+ description: "Client library for the Matrix.org communications protocol",
version: "0.1.0",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
@@ -18,6 +19,13 @@ defmodule PolyjuiceClient.MixProject do
main: "readme",
# logo: "path/to/logo.png",
extras: ["README.md"]
+ ],
+ package: [
+ maintainers: ["Hubert Chathi"],
+ licenses: ["Apache-2.0"],
+ links: %{
+ "Source" => "https://gitlab.com/uhoreg/polyjuice_client"
+ }
]
]
end