Skip to content

Commit

Permalink
Fix config stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
ushitora-anqou committed Aug 22, 2023
1 parent a069673 commit 76450cb
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 20 deletions.
2 changes: 2 additions & 0 deletions .ocamlformat
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
profile = default
version = 0.26.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ $ eval $(opam env --switch=default)
$ git clone https://github.com/ushitora-anqou/qash.git
$ cd qash
$ opam install . --deps-only
$ dune build
$ dune build bin/main.exe
$ _build/default/bin/main.exe --version
0.1.0
```
Expand Down
21 changes: 12 additions & 9 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,26 @@
(generate_opam_files true)

(source
(github username/reponame))
(github ushitora-anqou/qash))

(authors "Author Name")
(authors "Ushitora Anqou")

(maintainers "Maintainer Name")
(maintainers "Ushitora Anqou")

(license LICENSE)

(documentation https://url/to/documentation)
(documentation https://github.com/ushitora-anqou/qash)

(package
(name qash)
(synopsis "A short synopsis")
(description "A longer description")
(tags
(topics "to describe" your project))
(synopsis "A programming language for double-entry accounting")
(description
"A programming language for double-entry accounting, inspired by Beancount")
(tags (accounting))
(depends
alcotest
(alcotest :with-test)
(ocamlformat
(= 0.26.0))
caqti
caqti-driver-sqlite3
caqti-lwt
Expand All @@ -36,6 +38,7 @@
menhir
ocaml
pcre
ppx_deriving
(ppx_yojson_conv
(<= v0.15.1))
yojson))
Expand Down
23 changes: 13 additions & 10 deletions qash.opam
Original file line number Diff line number Diff line change
@@ -1,16 +1,18 @@
# 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"]
synopsis: "A programming language for double-entry accounting"
description:
"A programming language for double-entry accounting, inspired by Beancount"
maintainer: ["Ushitora Anqou"]
authors: ["Ushitora Anqou"]
license: "LICENSE"
tags: ["topics" "to describe" "your" "project"]
homepage: "https://github.com/username/reponame"
doc: "https://url/to/documentation"
bug-reports: "https://github.com/username/reponame/issues"
tags: ["accounting"]
homepage: "https://github.com/ushitora-anqou/qash"
doc: "https://github.com/ushitora-anqou/qash"
bug-reports: "https://github.com/ushitora-anqou/qash/issues"
depends: [
"alcotest"
"alcotest" {with-test}
"ocamlformat" {= "0.26.0"}
"caqti"
"caqti-driver-sqlite3"
"caqti-lwt"
Expand All @@ -23,6 +25,7 @@ depends: [
"menhir"
"ocaml"
"pcre"
"ppx_deriving"
"ppx_yojson_conv" {<= "v0.15.1"}
"yojson"
"odoc" {with-doc}
Expand All @@ -41,4 +44,4 @@ build: [
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/username/reponame.git"
dev-repo: "git+https://github.com/ushitora-anqou/qash.git"

0 comments on commit 76450cb

Please sign in to comment.