Packages

PTY sessions for Elixir apps with terminals in their UI. Name reservation — the library is in development.

Current section

Files

Jump to
pty mix.exs
Raw

mix.exs

defmodule Pty.MixProject do
use Mix.Project
@version "0.0.1"
def project do
[
app: :pty,
deps: [{:ex_doc, "~> 0.34", only: :dev, runtime: false}],
description:
"PTY sessions for Elixir apps with terminals in their UI. " <>
"Name reservation — the library is in development.",
docs: [extras: ["README.md"], main: "readme"],
elixir: "~> 1.15",
name: "Pty",
package: [
files: ~w(lib mix.exs LICENSE README.md),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/jgeschwendt/ex-term"}
],
start_permanent: Mix.env() == :prod,
version: @version
]
end
def application do
[extra_applications: [:logger]]
end
end