defmodule GramnadRPC.MixProject do use Mix.Project def project do [ app: :gramnad_rpc, version: "0.1.0", elixir: "~> 1.14", start_permanent: Mix.env() == :prod, deps: deps(), description: description(), package: package(), deps: deps(), name: "GenETS", source_url: "https://gitlab.com/your-seijin/toeto/gen_ets" ] 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 [ {:ex_doc, "~> 0.14", only: :dev, runtime: false}, {:jason, "~> 1.4"}, {:amqp, "~> 3.2"}, ] end defp description() do "GramnadRPC is a library providing gen_server and tools to command CouchDB via the RabbitMQ RPC connection." end defp package() do [ # These are the default files included in the package files: ~w(lib .formatter.exs mix.exs README*), licenses: ["zlib License"], links: %{"GitLab" => "https://gitlab.com/your-seijin/toeto/gramnad_rpc"} ] end end