Set up for hex.pm publish

This commit is contained in:
Mikko Ahlroth 2021-01-21 21:29:54 +02:00
parent 93dae81b60
commit bad9c766ae

13
mix.exs
View file

@ -4,20 +4,27 @@ defmodule DotenvParser.MixProject do
def project do
[
app: :dotenv_parser,
version: "1.1.1",
version: "1.2.0",
elixir: "~> 1.11",
start_permanent: Mix.env() == :prod,
deps: deps(),
docs: [
main: DotenvParser
]
],
description: "Simple library to parse and load dotenv files.",
package: [
licenses: ["MIT", "BSD-2-Clause"],
links: %{"GitLab" => "https://gitlab.com/Nicd/dotenv-parser"}
],
source_url: "https://gitlab.com/Nicd/dotenv-parser",
homepage_url: "https://gitlab.com/Nicd/dotenv-parser"
]
end
# Run "mix help compile.app" to learn about applications.
def application do
[
extra_applications: [:logger]
extra_applications: []
]
end