Packages

The generated protobuf modules to Alibaba TableStore Elixir SDK

Current section

Files

Jump to
Raw

mix.exs

defmodule TablestoreProtos.MixProject do
use Mix.Project
def project do
[
app: :tablestore_protos,
version: "0.1.5",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
docs: docs(),
source_url: "https://github.com/xinz/tablestore_protos"
]
end
defp description do
"The generated protobuf modules to Alibaba TableStore Elixir SDK"
end
defp package do
[
files: ["lib", "mix.exs", "README.md", "LICENSE.md"],
maintainers: ["Xin Zou"],
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/xinz/tablestore_protos"}
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:protox, "~> 1.6"},
{:ex_doc, "~> 0.21", only: :dev, runtime: false}
]
end
defp docs do
[
main: "readme",
formatter_opts: [gfm: true],
extras: [
"README.md"
]
]
end
end