Skip to content

Commit

Permalink
Improve mix.exs
Browse files Browse the repository at this point in the history
  • Loading branch information
ream88 committed May 3, 2024
1 parent 0d2d61d commit 1772756
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions mix.exs
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
defmodule Tracee.MixProject do
use Mix.Project

@version "0.1.0"

def project do
[
app: :tracee,
version: "0.1.0",
version: @version,
elixir: "~> 1.16",
deps: deps(),
name: "Tracee",
description: "Trace function calls in concurrent Elixir processes.",

# Package
package: %{
licenses: ["MIT"],
maintainers: ["Mario Uher"],
links: %{"GitHub" => "https://github.com/tagbase-io/tracee"}
},

# Docs
name: "Tracee",
source_url: "https://github.com/tagbase-io/tracee",
docs: [
source_url: "https://github.com/tagbase-io/tracee",
main: "Tracee"
]
]
Expand Down

0 comments on commit 1772756

Please sign in to comment.