diff options
author | Hentioe <me@bluerain.io> | 2020-12-05 23:44:55 +0800 |
---|---|---|
committer | Hentioe <me@bluerain.io> | 2020-12-05 23:51:56 +0800 |
commit | d145ab2bd86fb3c35d876649af7d57923ecf292d (patch) | |
tree | cf9570109ae76cceba0b466fb1fdb14603232fdb | |
parent | Update README.md (diff) |
Release v0.1.0-rc.0
Add document config
-rw-r--r-- | mix.exs | 23 |
1 files changed, 21 insertions, 2 deletions
@@ -1,13 +1,32 @@ defmodule AzureEx.MixProject do use Mix.Project + @version "0.1.0-rc.0" + @description "Azure API client" + def project do [ app: :azure_ex, - version: "0.1.0-dev", + version: @version, elixir: "~> 1.11", start_permanent: Mix.env() == :prod, - deps: deps() + deps: deps(), + description: @description, + package: package(), + name: "AzureEx", + source_url: "https://github.com/Hentioe/azure_ex", + docs: [ + # The main page in the docs + main: "readme", + extras: ["README.md"] + ] + ] + end + + defp package do + [ + licenses: ["MIT"], + links: %{"GitHub" => "https://github.com/Hentioe/azure_ex"} ] end |