summaryrefslogtreecommitdiff
path: root/mix.exs
diff options
context:
space:
mode:
Diffstat (limited to 'mix.exs')
-rw-r--r--mix.exs24
1 files changed, 22 insertions, 2 deletions
diff --git a/mix.exs b/mix.exs
index 6ffcc09..b95fcce 100644
--- a/mix.exs
+++ b/mix.exs
@@ -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},