-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaprnlp.asd
More file actions
26 lines (25 loc) · 739 Bytes
/
aprnlp.asd
File metadata and controls
26 lines (25 loc) · 739 Bytes
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
;; -*- mode: Lisp; coding: utf-8-unix; -*-
;; Copyright (c) 2024, April & May
;; SPDX-License-Identifier: 0BSD
(defsystem aprnlp
:author "April & May"
:license "0BSD"
:depends-on (alexandria
anaphora
cl-ppcre
dexador
iterate
log4cl
serapeum
split-sequence
trivial-file-size)
:components ((:file "package")
(:file "conllu")
(:file "util")
(:file "generic")
(:file "pos")
(:file "lemma")
(:file "dep")
(:file "dep-label")
(:file "simple-tokenizer")
(:file "simple-pipeline")))