Skip to content

Commit

Permalink
v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelmanzanera committed Jul 3, 2024
1 parent b9704b4 commit 24c5e18
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
# BlsEx

**TODO: Add description**
This package is Elixir utility to work with BLS signature scheme supporting aggregation of signatures and public keys along with signature and verification.

## Installation

If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `bls_ex` to your list of dependencies in `mix.exs`:
Adds `bls_ex` to your list of dependencies in `mix.exs`:

```elixir
def deps do
Expand All @@ -15,7 +14,6 @@ def deps do
end
```

Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at <https://hexdocs.pm/bls_ex>.
## Documentation

Documentation is [available on Hexdocs](https://hexdocs.pm/bls_ex)
16 changes: 15 additions & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,21 @@ defmodule BlsEx.MixProject do
version: "0.1.0",
elixir: "~> 1.14",
start_permanent: Mix.env() == :prod,
deps: deps()
deps: deps(),
package: package()
]
end

defp package do
[
files: [
"lib",
"native",
"checksum-*.exs",
"mix.exs"
],
licenses: ["AGPL-3.0-or-later"],
links: %{"GitHub" => "https://github.com/archethic-foundation/bls_ex"}
]
end

Expand Down

0 comments on commit 24c5e18

Please sign in to comment.