-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathepisql.opam
30 lines (29 loc) · 1007 Bytes
/
episql.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
opam-version: "2.0"
name: "episql"
maintainer: "Petter A. Urkedal <[email protected]>"
authors: "Petter A. Urkedal <[email protected]>"
license: "LGPL-3.0-or-later WITH LGPL-3.0-linking-exception"
homepage: "https://github.com/paurkedal/episql/"
bug-reports: "https://github.com/paurkedal/episql/issues"
depends: [
"ocaml"
"dune" {>= "1.9"}
"fmt"
"prime"
"re"
"xmlm"
]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
dev-repo: "git+https://github.com/paurkedal/episql.git"
synopsis: "SQL schema parser and code generator"
description: """
epiSQL /ˈɛpɪˈsiːkwəl/ is an SQL schema parser and code generator. It
supports a subset of SQL `CREATE`-statements with focus on PostgreSQL. It
contains generators for
* [Caqti][], providing a persistence-style API with caching,
* XML, providing easy access for external applications to the schema, and
* Unix shells, providing a series of function calls for general ad-hoc use.
"""