diff options
author | Chimrod <> | 2023-09-22 14:35:24 +0200 |
---|---|---|
committer | Chimrod <> | 2023-09-22 14:38:00 +0200 |
commit | 5b42128cac499b6f54d8e882e2363f5e7135b366 (patch) | |
tree | d5c77ee5a0df7d0a7063120156c4d4199b3a42ef | |
parent | bd9d82035b21c8b0695c18208827c184785398af (diff) |
Update readme
-rw-r--r-- | dune-project | 13 | ||||
-rw-r--r-- | readme.md | 4 | ||||
-rw-r--r-- | test/dune | 1 |
3 files changed, 14 insertions, 4 deletions
diff --git a/dune-project b/dune-project index b5e5b87..07db7a2 100644 --- a/dune-project +++ b/dune-project @@ -4,7 +4,7 @@ (name qsp_parser) (generate_opam_files true) -(implicit_transitive_deps true) +(implicit_transitive_deps false) (source (github username/reponame)) @@ -13,15 +13,20 @@ (maintainers "Chimrod") -(license LICENSE) +(license GPLv3+) (documentation https://url/to/documentation) (package (name qsp_parser) - (synopsis "A short synopsis") + (synopsis "QSP Syntax analyser") (description "A longer description") - (depends ocaml dune) + (depends + ocaml + dune + menhir + alcotest + ) (tags (topics "to describe" your project))) diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..ae37826 --- /dev/null +++ b/readme.md @@ -0,0 +1,4 @@ + +# QSP Syntax Parser + +This tool is a syntax analyzer for the QSP Language. @@ -4,6 +4,7 @@ alcotest qsp_parser qsp_syntax + fmt ) (preprocess (pps ppx_deriving.show |