Skip to content

Commit

Permalink
Update project def from mix.exs
Browse files Browse the repository at this point in the history
  • Loading branch information
LauraBeatris committed Aug 21, 2023
1 parent 6c34562 commit c50c3fd
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
defmodule WorkOS.MixProject do
use Mix.Project

@version "0.3.0"
@source_url "https://github.com/getsentry/sentry-elixir"

def project do
[
name: "WorkOS SDK for Elixir",
app: :workos,
version: "0.3.0",
version: @version,
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
source_url: "https://github.com/workos-inc/workos-elixir/",
homepage_url: "https://workos.com",
docs: docs()
docs: docs(),
source_ref: "#{@version}",
source_url: @source_url
]
end

Expand Down Expand Up @@ -60,11 +65,11 @@ defmodule WorkOS.MixProject do
files: ["lib", "LICENSE*", "mix.exs", "README*"],
licenses: ["MIT"],
links: %{
"GitHub" => "https://github.com/workos-inc/workos-elixir",
"Online documentation" => "https://workos.com/docs",
"GitHub" => @source_url,
"Documentation" => "https://workos.com/docs",
"Homepage" => "https://workos.com"
},
maintainers: ["Conner Fritz"]
maintainers: ["Laura Beatris", "Blair Lunceford", "Jacobia Johnson"]
]
end
end

0 comments on commit c50c3fd

Please sign in to comment.