A set of utilities for working with the AT Protocol in Elixir.

chore: update mix.exs

ovyerus.com 9178d01d be0b2c78

verified
Changed files
+43 -4
lib
+14
CHANGELOG.md
···
···
+
# Changelog
+
+
All notable changes to atex will be documented in this file.
+
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
+
and this project adheres to
+
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
+
+
## [0.1.0] - 2025-06-07
+
+
Initial release.
+
+
[unreleased]: https://github.com/cometsh/atex/compare/v0.1.0...HEAD
+
[0.1.0]: https://github.com/cometsh/atex/releases/tag/v0.1.0
-2
lib/atex.ex
···
-
defmodule Atex do
-
end
···
+29 -2
mix.exs
···
defmodule Atex.MixProject do
use Mix.Project
def project do
[
app: :atex,
-
version: "0.1.0",
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
-
deps: deps()
]
end
···
[
{:typedstruct, "~> 0.5"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false, warn_if_outdated: true}
]
end
end
···
defmodule Atex.MixProject do
use Mix.Project
+
@version "0.1.0"
+
@source_url "https://github.com/cometsh/atex"
+
def project do
[
app: :atex,
+
version: @version,
elixir: "~> 1.18",
start_permanent: Mix.env() == :prod,
+
deps: deps(),
+
name: "atex",
+
description: "A set of utilities for working with the AT Protocol in Elixir.",
+
package: package(),
+
docs: docs()
]
end
···
[
{:typedstruct, "~> 0.5"},
{:ex_doc, "~> 0.34", only: :dev, runtime: false, warn_if_outdated: true}
+
]
+
end
+
+
defp package do
+
[
+
licenses: ["MIT"],
+
links: %{"GitHub" => @source_url}
+
]
+
end
+
+
defp docs do
+
[
+
extras: [
+
LICENSE: [title: "License"],
+
"README.md": [title: "Overview"]
+
],
+
main: "readme",
+
source_url: @source_url,
+
source_ref: "v#{@version}",
+
formatters: ["html"]
]
end
end