-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmix.exs
40 lines (34 loc) · 887 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
36
37
38
39
40
defmodule LFSR.Mixfile do
use Mix.Project
@version "0.0.2"
def project do
[app: :lfsr,
version: @version,
elixir: "~> 1.0",
deps: deps(),
package: package(),
description: description(),
name: "LFSR",
docs: [extras: ["README.md"], main: "extra-readme",
source_ref: "v#{@version}",
source_url: "https://github.com/pma/lfsr"]]
end
def application do
[applications: [:logger]]
end
defp deps do
[{:earmark, "~> 0.1", only: :docs},
{:ex_doc, "~> 0.10", only: :docs}]
end
defp description do
"""
Elixir implementation of a binary Galois Linear Feedback Shift Register.
"""
end
defp package do
[files: ["lib", "mix.exs", "README.md", "LICENSE"],
maintainers: ["Paulo Almeida"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/pma/lfsr"}]
end
end