defmodule WebmaniaNfe.MixProject do use Mix.Project def project do [ app: :webmania_nfe, version: "0.3.3", elixir: "~> 1.15", start_permanent: Mix.env() == :prod, deps: deps(), # Docs name: "Webmania NF-e SDK", description: "Unofficial Elixir SDK for WebmaniaBR NF-e API", source_url: "https://github.com/marmita-fit/webmania-sdk", homepage_url: "https://github.com/marmita-fit/webmania-sdk", package: [ licenses: ["MIT"], links: %{ "Documentation" => "https://webmania.com.br/docs/rest-api-nfe/", "GitHub" => "https://github.com/marmita-fit/webmania-sdk/" } ], docs: [ main: "Webmania NF-e SDK", extras: ["README.md"] ] ] 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 [ {:httpoison, "~> 2.1"}, {:exconstructor, "~> 1.2.9"}, {:poison, ">= 3.0.0 and <= 7.0.0"}, {:ex_json_schema, "~> 0.11.2"}, {:nestru, "~> 1.0"}, {:domo, "~> 1.5"}, {:bypass, "~> 2.1", only: :test}, {:ex_doc, "~> 0.31", only: :dev, runtime: false} # {:dep_from_hexpm, "~> 0.3.0"}, # {:dep_from_git, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"} ] end end