Packages

An utility for safely converting string to an atom from a set.

Current section

Files

Jump to
to_atom_in mix.exs
Raw

mix.exs

defmodule ToAtomIn.MixProject do
use Mix.Project
def project do
[
app: :to_atom_in,
version: "0.1.0",
elixir: "> 1.0.0",
start_permanent: Mix.env() == :prod,
deps: deps(),
description: description(),
package: package()
]
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
[
{:ex_doc, "~> 0.33", only: :dev, runtime: false}
]
end
def description do
"""
An utility for safely converting string to an atom from a set.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README.md"],
maintainers: ["Anton Frolov"],
licenses: ["Apache-2.0"],
links: %{
"GitHub" => "https://github.com/JohnJocoo/to_atom_in",
"Docs" => "https://hexdocs.pm/to_atom_in/"
}
]
end
end