diff options
-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 |