filled out some dune-project info

This commit is contained in:
Moritz Gmeiner 2024-08-25 21:22:53 +02:00
commit d2a9964541
2 changed files with 8 additions and 10 deletions

View file

@ -2,16 +2,16 @@
opam-version: "2.0" opam-version: "2.0"
synopsis: "A short synopsis" synopsis: "A short synopsis"
description: "A longer description" description: "A longer description"
maintainer: ["Maintainer Name"] authors: ["Moritz Gmeiner"]
authors: ["Author Name"]
license: "LICENSE" license: "LICENSE"
tags: ["topics" "to describe" "your" "project"] tags: ["topics" "to describe" "your" "project"]
homepage: "https://github.com/username/reponame" homepage: "https://github.com/morizzg/mlox"
doc: "https://url/to/documentation" doc: "https://url/to/documentation"
bug-reports: "https://github.com/username/reponame/issues" bug-reports: "https://github.com/morizzg/mlox/issues"
depends: [ depends: [
"ocaml" "ocaml"
"dune" {>= "3.16"} "dune" {>= "3.16"}
"ppx_deriving"
"odoc" {with-doc} "odoc" {with-doc}
] ]
build: [ build: [
@ -28,4 +28,4 @@ build: [
"@doc" {with-doc} "@doc" {with-doc}
] ]
] ]
dev-repo: "git+https://github.com/username/reponame.git" dev-repo: "git+https://github.com/morizzg/mlox.git"

View file

@ -5,11 +5,9 @@
(generate_opam_files true) (generate_opam_files true)
(source (source
(github username/reponame)) (github morizzg/mlox))
(authors "Author Name") (authors "Moritz Gmeiner")
(maintainers "Maintainer Name")
(license LICENSE) (license LICENSE)
@ -19,7 +17,7 @@
(name MlLox) (name MlLox)
(synopsis "A short synopsis") (synopsis "A short synopsis")
(description "A longer description") (description "A longer description")
(depends ocaml dune) (depends ocaml dune ppx_deriving)
(tags (tags
(topics "to describe" your project))) (topics "to describe" your project)))