Packages

A parser for datemath syntax.

Current section

Files

Jump to
Raw

mix.exs

defmodule DatemathEx.MixProject do
use Mix.Project
def project do
[
app: :datemath_ex,
version: "0.2.0",
elixir: "~> 1.14",
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
defp description do
"""
A parser for datemath syntax.
"""
end
defp package do
[
files: ["lib", "mix.exs", "README*", "LICENSE*"],
maintainers: "wingcon",
licenses: ~w(MIT),
links: %{"Github" => "https://github.com/wingcon/datemath_ex"}
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:timex, "~> 3.7"},
{:ex_doc, ">= 0.0.0", only: :dev, runtime: false}
]
end
end