Current section
Files
Jump to
Current section
Files
botex_telegram
mix.exs
mix.exs
defmodule BotexTelegram.MixProject do
use Mix.Project
def project do
[
app: :botex_telegram,
version: "2.0.3",
description: "Telegram module for https://github.com/Slavenin/bot_ex",
start_permanent: Mix.env() == :prod,
deps: deps(),
compilers: [:yecc] ++ Mix.compilers(),
package: [
licenses: ["MIT"],
homepage_url: "https://github.com/bot-ex",
links: %{"GitHub" => "https://github.com/Slavenin/bot_ex-telegram"}
]
]
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
[
{:bot_ex, "~> 1.0.4"},
{:telegex, "~> 1.8.0"},
{:finch, "~> 0.19.0"},
{:timex, "~> 3.7"},
{:earmark, "~> 1.4", only: :dev},
{:ex_doc, "~> 0.22", only: :dev},
{:jason, "~> 1.4"}
]
end
end