Skip to content

Commit 8ac3e10

Browse files
committed
chore: prepare to release
1 parent 914fd52 commit 8ac3e10

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

mix.exs

+17
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
defmodule Tableau.MixProject do
22
use Mix.Project
33

4+
@source_url "https://github.com/elixir-tools/tableau"
5+
46
def project do
57
[
68
app: :tableau,
9+
description: "Static site generator for elixir",
10+
source_url: @source_url,
711
version: "0.1.0",
812
elixir: "~> 1.12",
913
elixirc_paths: elixirc_paths(Mix.env()),
1014
start_permanent: Mix.env() == :prod,
15+
package: package(),
1116
deps: deps()
1217
]
1318
end
@@ -41,4 +46,16 @@ defmodule Tableau.MixProject do
4146
{:floki, "~> 0.34", only: :test}
4247
]
4348
end
49+
50+
defp package() do
51+
[
52+
maintainers: ["Mitchell Hanberg"],
53+
licenses: ["MIT"],
54+
links: %{
55+
GitHub: @source_url,
56+
Sponsor: "https://github.com/sponsors/mhanberg"
57+
},
58+
files: ~w(lib LICENSE mix.exs README.md .formatter.exs)
59+
]
60+
end
4461
end

0 commit comments

Comments
 (0)