defmodule AdhdReadingSiteKit.MixProject do
use Mix.Project
def project do
[
app: :adhdreading_site_kit,
version: "0.1.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: "Small URL helpers for ADHD Reading, a Chrome extension for focused reading.",
package: package(),
docs: [
main: "AdhdReadingSiteKit",
source_url: "https://github.com/bbwdadfg/adhdreading-site-kit"
]
]
end
def application do
[extra_applications: [:logger]]
end
defp deps do
[
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
defp package do
[
licenses: ["MIT"],
links: %{
"ADHD Reading" => "https://adhdreading.org",
"Features" => "https://adhdreading.org/features",
"Download" => "https://adhdreading.org/download",
"Chrome Web Store" => "https://chromewebstore.google.com/detail/adhd-reading/dgihjimekmhphkbnnnomcbemhinmhmeg",
"GitHub" => "https://github.com/bbwdadfg/adhdreading-site-kit"
},
files: ["lib/adhdreading_site_kit.ex", "mix.exs", "README.md", "LICENSE"]
]
end
end