-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.rkt
45 lines (38 loc) · 940 Bytes
/
info.rkt
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
34
35
36
37
38
39
40
41
42
43
44
#lang info
(define pkg-name "pydrnlp")
(define collection "pydrnlp")
(define pkg-desc
"Racket interface to Python NLP library for Digital Ricoeur")
(define version "0.1.1")
(define pkg-authors '(philip))
(define install-collection
"support/conda.rkt")
(define compile-omit-paths '("py/condaenv/"))
(define scribblings
'(("scribblings/pydrnlp.scrbl"
(multi-page)
("Digital Ricœur" 0))))
(define deps
'(["base" #:version "7.4"]
["ricoeur-kernel" #:version "0.0.2"]
["ricoeur-tei-utils" #:version "0.5.91"]
["adjutor" #:version "0.3"]
"python-tokenizer"
"math-lib"
"pict-lib"
"draw-lib"
"typed-racket-lib"
"typed-racket-more"
"reprovide-lang"
["db-lib" #:version "1.4"]
["sql" #:version "1.5"]
"gregor-lib"))
(define build-deps
'("scribble-lib"
"racket-doc"
"rackunit-lib"
"markdown"
"rackunit-typed"
"_-exp"
"at-exp-lib"
"rackjure"))