defmodule PlaywrightTest.MixProject do use Mix.Project @source_url "https://github.com/geometerio/playwright-elixir" def project do [ app: :playwright_test, build_path: "../../_build", config_path: "../../config/config.exs", deps: deps(), deps_path: "../../deps", description: "Playwright Test is an Elixir library that provides a set of utilities for writing tests using Playwright.", elixir: "~> 1.13", lockfile: "../../mix.lock", package: package(), start_permanent: Mix.env() == :prod, version: "0.1.0-pre" ] 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 [ # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}, # {:sibling_app_in_umbrella, in_umbrella: true} {:ex_doc, "~> 0.25", only: :dev, runtime: false} ] end defp package do [ licenses: ["MIT"], links: %{ homepage: @source_url, source: @source_url }, files: ~w(lib priv LICENSE mix.exs README.md) ] end end