Packages
Elixir API to get stock quotes from the https://tradegate.de exchange
Current section
Files
Jump to
Current section
Files
tradegate_ex
mix.exs
mix.exs
defmodule TradegateEx.MixProject do
use Mix.Project
def project do
[
app: :tradegate_ex,
version: "0.2.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
package: package(),
# Docs
name: "TradegateEx",
docs: [
main: "TradegateEx",
extras: ["README.md"]
],
source_url: "https://git.sr.ht/~janschreiber/tradegate_ex",
description: "Elixir API to get stock quotes from the https://tradegate.de exchange"
]
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, "~> 1.8"},
{:jason, "~> 1.2"},
{:ex_doc, "~> 0.24", only: :dev, runtime: false}
]
end
defp package do
[
maintainers: ["Jan Schreiber"],
licenses: ["ISC"],
links: %{"Sourcehut" => "https://git.sr.ht/~janschreiber/tradegate_ex"}
]
end
end