diff --git a/dune-project b/dune-project index a3f6b09..d30bf70 100644 --- a/dune-project +++ b/dune-project @@ -7,18 +7,26 @@ (source (github ocurrent/opam-ci-check)) -(authors "Author Name") +(authors + "Puneeth Chaganti " + "Shon Feder ") -(maintainers "Maintainer Name") +(maintainers + "Puneeth Chaganti " + "Shon Feder ") -(license LICENSE) +; TODO: Add a license field +;(license LICENSE) -(documentation https://url/to/documentation) +(documentation + https://www.ocurrent.org/opam-ci-check/opam-ci-check/index.html) (package (name opam-ci-check) - (synopsis "A short synopsis") - (description "A longer description") + (synopsis + "CLI tool that tests whether packages are publishable on the opam repository.") + (description + "opam-ci-check is used in the opam repo CI and can be used locally and in other CI pipelines to test the deliverability of packages.") (depends (ocaml (>= 4.14.0)) @@ -31,6 +39,4 @@ (mula (>= 0.1.2))) (tags - (topics "to describe" your project))) - -; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project + ("opam" "ci" "lint" "reverse dependency"))) diff --git a/opam-ci-check.opam b/opam-ci-check.opam index 2dce739..59c7f37 100644 --- a/opam-ci-check.opam +++ b/opam-ci-check.opam @@ -1,13 +1,20 @@ # This file is generated by dune, edit dune-project instead opam-version: "2.0" -synopsis: "A short synopsis" -description: "A longer description" -maintainer: ["Maintainer Name"] -authors: ["Author Name"] -license: "LICENSE" -tags: ["topics" "to describe" "your" "project"] +synopsis: + "CLI tool that tests whether packages are publishable on the opam repository." +description: + "opam-ci-check is used in the opam repo CI and can be used locally and in other CI pipelines to test the deliverability of packages." +maintainer: [ + "Puneeth Chaganti " + "Shon Feder " +] +authors: [ + "Puneeth Chaganti " + "Shon Feder " +] +tags: ["opam" "ci" "lint" "reverse dependency"] homepage: "https://github.com/ocurrent/opam-ci-check" -doc: "https://url/to/documentation" +doc: "https://www.ocurrent.org/opam-ci-check/opam-ci-check/index.html" bug-reports: "https://github.com/ocurrent/opam-ci-check/issues" depends: [ "ocaml" {>= "4.14.0"}