File tree 1 file changed +17
-0
lines changed
1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change 1
1
defmodule Tableau.MixProject do
2
2
use Mix.Project
3
3
4
+ @ source_url "https://github.com/elixir-tools/tableau"
5
+
4
6
def project do
5
7
[
6
8
app: :tableau ,
9
+ description: "Static site generator for elixir" ,
10
+ source_url: @ source_url ,
7
11
version: "0.1.0" ,
8
12
elixir: "~> 1.12" ,
9
13
elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
10
14
start_permanent: Mix . env ( ) == :prod ,
15
+ package: package ( ) ,
11
16
deps: deps ( )
12
17
]
13
18
end
@@ -41,4 +46,16 @@ defmodule Tableau.MixProject do
41
46
{ :floki , "~> 0.34" , only: :test }
42
47
]
43
48
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
44
61
end
You can’t perform that action at this time.
0 commit comments