Packages

GTFS tools for the time being for Elixir applications.

Current section

Files

Jump to
transit mix.exs
Raw

mix.exs

defmodule Transit.MixProject do
use Mix.Project
def project do
[
app: :transit,
version: "0.1.1",
elixir: "~> 1.7",
start_permanent: Mix.env() == :prod,
description: description(),
package: package(),
deps: deps(),
name: "Transit",
source_url: "https://github.com/slickage/transit"
]
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
[
{:ex_doc, ">= 0.0.0", only: :dev},
{:nimble_csv, "~> 0.5"},
{:httpoison, "~> 1.4"}
]
end
defp description() do
"GTFS tools for the time being for Elixir applications."
end
defp package() do
[
name: "transit",
files: ~w(lib .formatter.exs mix.exs README*),
licenses: ["MIT"],
links: %{"GitHub" => "https://github.com/slickage/transit"}
]
end
end