From d2a9964541c3aa19d2a971d2dd4b617aed5382b1 Mon Sep 17 00:00:00 2001 From: Moritz Gmeiner Date: Sun, 25 Aug 2024 21:22:53 +0200 Subject: [PATCH] filled out some dune-project info --- MlLox.opam | 10 +++++----- dune-project | 8 +++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/MlLox.opam b/MlLox.opam index b296c11..f0e4e25 100644 --- a/MlLox.opam +++ b/MlLox.opam @@ -2,16 +2,16 @@ opam-version: "2.0" synopsis: "A short synopsis" description: "A longer description" -maintainer: ["Maintainer Name"] -authors: ["Author Name"] +authors: ["Moritz Gmeiner"] license: "LICENSE" tags: ["topics" "to describe" "your" "project"] -homepage: "https://github.com/username/reponame" +homepage: "https://github.com/morizzg/mlox" doc: "https://url/to/documentation" -bug-reports: "https://github.com/username/reponame/issues" +bug-reports: "https://github.com/morizzg/mlox/issues" depends: [ "ocaml" "dune" {>= "3.16"} + "ppx_deriving" "odoc" {with-doc} ] build: [ @@ -28,4 +28,4 @@ build: [ "@doc" {with-doc} ] ] -dev-repo: "git+https://github.com/username/reponame.git" +dev-repo: "git+https://github.com/morizzg/mlox.git" diff --git a/dune-project b/dune-project index a0e4244..ac1987f 100644 --- a/dune-project +++ b/dune-project @@ -5,11 +5,9 @@ (generate_opam_files true) (source - (github username/reponame)) + (github morizzg/mlox)) -(authors "Author Name") - -(maintainers "Maintainer Name") +(authors "Moritz Gmeiner") (license LICENSE) @@ -19,7 +17,7 @@ (name MlLox) (synopsis "A short synopsis") (description "A longer description") - (depends ocaml dune) + (depends ocaml dune ppx_deriving) (tags (topics "to describe" your project)))