-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmechaml.opam
33 lines (33 loc) · 1.01 KB
/
mechaml.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
31
32
33
opam-version: "2.0"
maintainer: "Yann Hamdaoui <[email protected]>"
authors: "Yann Hamdaoui <[email protected]>"
homepage: "https://github.com/yannham/mechaml"
synopsis: "A functional web scraping library"
description: """
Mechaml is a functional web scraping library that allows to :
- Fetch web content
- Analyze, fill and submit HTML forms
- Handle cookies, headers and redirections
"""
bug-reports: "https://github.com/yannham/mechaml/issues"
license: "LGPL-3.0-or-later"
dev-repo: "git+https://github.com/yannham/mechaml.git"
doc: "https://yannham.github.io/mechaml/"
tags: ["web" "scraping" "mechanize" "http" "client"]
build: [
["dune" "build" "-p" name "-j" jobs]
["dune" "build" "@doc" "-p" name ] {with-doc}
["dune" "runtest" "-p" name "-j" jobs] {with-test}
]
depends: [
"dune" {>= "1.8.0"}
"ocaml-syntax-shims" {build}
"cohttp" {>= "0.21.0" & < "5.0.0"}
"cohttp-lwt"
"cohttp-lwt-unix"
"lwt"
"uri"
"lambdasoup" {< "0.8.0"}
"alcotest" {with-test & >= "0.8.0"}
"ocaml" {>= "4.03.0"}
]