From 80dbd888c8d20df9119cdfc86db9195a3ca09234 Mon Sep 17 00:00:00 2001 From: Nathan Rebours Date: Thu, 7 Mar 2019 15:30:23 +0100 Subject: [PATCH] Add a description to the opam file --- ppx_factory.opam | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/ppx_factory.opam b/ppx_factory.opam index 3024830..e35cdc6 100644 --- a/ppx_factory.opam +++ b/ppx_factory.opam @@ -21,3 +21,10 @@ depends: [ ] tags: ["org:cryptosense"] synopsis: "PPX to derive factories and default values" +description: """ +ppx_factory is a ppx deriver that builds factory method from record and variant type +definitions. + +Factory methods allow you to build test values by only supplying the parts that are relevant +to your tests. +"""