Skip to content

Adding metadata to mix.exs #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 30, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,26 @@ defmodule Tensorflex.MixProject do
elixir: "~> 1.6",
build_embedded: Mix.env == :prod,
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps()
]
end

defp description do
"""
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.
"""
end

defp package do
[
maintainers: ["Anshuman Chhabra"],
licenses: ["Apache 2.0"],
links: %{"GitHub" => "https://github.com/anshuman23/tensorflex"}
]
end

# Run "mix help compile.app" to learn about applications.
def application do
[
Expand Down