Skip to content

Commit

Permalink
release version 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillippOhlandt committed Jun 16, 2022
1 parent 52c00ca commit af74c0f
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ defmodule BrightPi.MixProject do
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
docs: docs(),
package: package(),
source_url: "https://github.com/PhillippOhlandt/bright_pi",
homepage_url: "https://github.com/PhillippOhlandt/bright_pi"
]
Expand All @@ -24,6 +26,13 @@ defmodule BrightPi.MixProject do
]
end

defp description do
"""
BrightPi is a library to talk to the "Pi Supply Bright Pi" board
featuring 4 white LEDs and 4 pairs of two infrared LEDs.
"""
end

# Run "mix help deps" to learn about dependencies.
defp deps do
[
Expand All @@ -33,6 +42,14 @@ defmodule BrightPi.MixProject do
]
end

defp package do
%{
maintainers: ["Phillipp Ohlandt"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/PhillippOhlandt/bright_pi"}
}
end

defp docs do
[
main: "BrightPi",
Expand Down

0 comments on commit af74c0f

Please sign in to comment.