Skip to content

Commit 448c375

Browse files
authored
Merge pull request #29 from anshuman23/dev
Adding metadata to mix.exs
2 parents c22f243 + 6f74479 commit 448c375

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Diff for: mix.exs

+16
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,26 @@ defmodule Tensorflex.MixProject do
99
elixir: "~> 1.6",
1010
build_embedded: Mix.env == :prod,
1111
start_permanent: Mix.env() == :prod,
12+
description: description(),
13+
package: package(),
1214
deps: deps()
1315
]
1416
end
1517

18+
defp description do
19+
"""
20+
A simple and fast library for running Tensorflow graph models in Elixir. Tensorflex is written around the Tensorflow C API, and allows Elixir developers to leverage Machine Learning and Deep Learning solutions in their projects.
21+
"""
22+
end
23+
24+
defp package do
25+
[
26+
maintainers: ["Anshuman Chhabra"],
27+
licenses: ["Apache 2.0"],
28+
links: %{"GitHub" => "https://github.com/anshuman23/tensorflex"}
29+
]
30+
end
31+
1632
# Run "mix help compile.app" to learn about applications.
1733
def application do
1834
[

0 commit comments

Comments
 (0)