Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F140721
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
View Options
diff --git a/mix.exs b/mix.exs
index 1c93ac0..bbc1139 100644
--- a/mix.exs
+++ b/mix.exs
@@ -1,34 +1,43 @@
defmodule HttpSignatures.MixProject do
use Mix.Project
def project do
[
app: :http_signatures,
+ description: "Library for manipulating and validating HTTP signatures",
version: "0.1.0",
elixir: "~> 1.7",
elixirc_options: [warnings_as_errors: true],
elixirc_paths: elixirc_paths(Mix.env()),
start_permanent: Mix.env() == :prod,
- deps: deps()
+ deps: deps(),
+ package: package()
]
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
[
{:credo, "~> 1.0.0", only: [:dev, :test], runtime: false},
{:ex_doc, "~> 0.19", only: :dev, runtime: false},
{:dialyxir, "~> 1.0.0-rc.5", only: [:dev], runtime: false}
]
end
+ defp package do
+ [
+ licenses: ["LGPLv3"],
+ links: %{"GitLab" => "https://git.pleroma.social/pleroma/elixir-libraries/http_signatures"}
+ ]
+ end
+
defp elixirc_paths(:test), do: ["lib", "test/support"]
defp elixirc_paths(_), do: ["lib"]
end
File Metadata
Details
Attached
Mime Type
text/x-diff
Expires
Tue, Jan 21, 7:04 AM (1 d, 1 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
55675
Default Alt Text
(1 KB)
Attached To
Mode
R18 http_signatures
Attached
Detach File
Event Timeline
Log In to Comment