defmodule Graphic.MixProject do use Mix.Project def project do [ app: :graphic, version: "0.1.4", elixir: "~> 1.18", description: "Build directed graphs, query them, and compile into common diagramming languages ([d2] for now).", package: [ licenses: [ "Unlicense" ], homepage_url: "https://share.operand.online/gram/graphic", links: %{ home: "https://share.operand.online/gram/graphic", }, ], deps: [ {:credo, "~> 1.7", only: [:dev, :test], runtime: false}, {:ex_doc, "~> 0.14", only: :dev, runtime: false}, ], ] end end