Current section
Files
Jump to
Current section
Files
mix.exs
defmodule Youtex.MixProject do
use Mix.Project
def project do
[
app: :youtex,
version: "0.1.0",
name: "YouTex",
description: "Read and filters transcriptions directly from YouTube channels",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package()
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
applications: [:elixir_xml_to_map],
extra_applications: [:logger, :poison, :httpoison]
]
end
# Run "mix help deps" to learn about dependencies.
defp deps do
[
{:elixir_xml_to_map, "~> 2.0"},
{:ex_doc, "~> 0.23", only: :dev, runtime: false},
{:poison, "~> 3.1"},
{:httpoison, "~> 1.8"}
# {:dep_from_hexpm, "~> 0.3.0"},
# {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
]
end
defp package() do
[
files: ~w(lib .formatter.exs mix.exs README*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/patrykwozinski/youtex"}
]
end
end