diff options
author | Hentioe <me@bluerain.io> | 2020-12-10 22:07:43 +0800 |
---|---|---|
committer | Hentioe <me@bluerain.io> | 2020-12-10 22:07:43 +0800 |
commit | 4dbe70773b31f06f20c2c600d8c9d00b33624008 (patch) | |
tree | c2573955b3d0b72a78d23c0875cbf336804aa9c5 /mix.exs | |
parent | Add run command related APIs (diff) | |
parent | Fix publish (diff) |
Merge branch 'master' of github.com:Hentioe/azure_ex
Diffstat (limited to 'mix.exs')
-rw-r--r-- | mix.exs | 24 |
1 files changed, 22 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", + 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 @@ -22,6 +41,7 @@ defmodule AzureEx.MixProject do # Run "mix help deps" to learn about dependencies. defp deps do [ + {:ex_doc, "~> 0.23.0"}, {:httpoison, "~> 1.7"}, {:typed_struct, "~> 0.2.1"}, {:dialyxir, "~> 1.0", only: [:dev], runtime: false}, |