defmodule Text2Sign.Mixfile do use Mix.Project def project do [app: :text_2_sign, version: "0.1.0", elixir: "~> 1.3", build_embedded: Mix.env == :prod, start_permanent: Mix.env == :prod, deps: deps(), description: description, source_url: "https://github.com/Waasi/text_2_sign", package: package, docs: [extras: ["README.md"]]] end def application do [applications: [:logger, :httpoison]] end defp deps do [{:httpoison, "~> 0.9.0"}, {:floki, "~> 0.11.0"}, {:mock, "~> 0.2.0", only: :test}, {:ex_doc, ">= 0.0.0", only: :dev}] end defp description do "Text to Sign Language Translator Elixir Library. It uses the resources in https://www.signingsavvy.com/ to translate a list of words to sign language." end defp package do [name: :text_2_sign, files: ["lib", "config", "mix.exs", "README*", "LICENSE*"], maintainers: ["Eric Santos"], licenses: ["MIT"], links: %{"GitHub" => "https://github.com/Waasi/text_2_sign"}] end end