defmodule GoogleapisProtoEx.MixProject do use Mix.Project def project do [ app: :googleapis_proto_ex, version: "0.4.0", elixir: "~> 1.15", start_permanent: Mix.env() == :prod, deps: deps(), description: description(), name: "GoogleapisProtoEx", package: package(), source_url: "https://github.com/nyo16/googleapis_proto_ex", docs: [ main: "readme", extras: ["README.md", "CHANGELOG.md"] ] ] end defp description() do "Google API protobufs for Elixir/gRPC: Datastore, Bigtable, Pub/Sub, Storage, KMS, Tasks, Secret Manager, BigQuery, IAM, Logging, Long-Running Operations and AI Generative Language" end defp package() do [ # This option is only needed when you don't want to use the OTP application name name: "googleapis_proto_ex", # These are the default files included in the package files: ~w(lib .formatter.exs mix.exs README* LICENSE* CHANGELOG*), licenses: ["Apache-2.0"], links: %{"GitHub" => "https://github.com/nyo16/googleapis_proto_ex"} ] 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 [ {:protobuf, "~> 0.17"}, {:grpc, "~> 1.0"}, {:ex_doc, "~> 0.40", only: :dev, runtime: false} ] end end