Skip to content

Commit

Permalink
Add required fields for publishing to Hex (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
estreeper authored May 4, 2024
1 parent ff8e4f3 commit 1eef994
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
defmodule ProdopsEx.MixProject do
use Mix.Project

@source_url "https://github.com/revelrylabs/prodops_ex"

def project do
[
app: :prodops_ex,
Expand All @@ -11,10 +13,14 @@ defmodule ProdopsEx.MixProject do
deps: deps(),
compilers: [:yecc, :leex] ++ Mix.compilers(),
aliases: aliases(),
package: [
licenses: ["MIT"],
links: %{"GitHub" => @source_url},
],

# Docs
name: "ProdopsEx",
source_url: "https://github.com/revelrylabs/prodops_ex",
source_url: @source_url,
docs: [
main: "readme",
logo: "prodops-logo.png",
Expand Down

0 comments on commit 1eef994

Please sign in to comment.