-
Notifications
You must be signed in to change notification settings - Fork 1
/
mix.exs
35 lines (31 loc) · 763 Bytes
/
mix.exs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
defmodule CircuitsUARTFramingPMS7003.MixProject do
use Mix.Project
def project do
[
app: :circuits_uart_framing_pms7003,
version: "0.1.0",
elixir: "~> 1.9",
source_url: "https://github.com/kamilkowalski/circuits_uart_framing_pms7003",
deps: deps(),
description: description(),
package: package()
]
end
defp deps do
[
{:circuits_uart, "~> 1.4"},
{:ex_doc, "~> 0.21", only: :dev, runtime: false}
]
end
defp description do
"""
Framing module for PMS7003 implementing Circuits.UART.Framing behaviour.
"""
end
defp package do
[
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/kamilkowalski/circuits_uart_framing_pms7003"}
]
end
end