changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > core / lisp/lib/nlp/nlp.asd

changeset 698: 96958d3eb5b0
parent: 386d51cf61ca
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 04 Oct 2024 22:04:59 -0400
permissions: -rw-r--r--
description: fixes
1 ;;; nlp.asd --- Natural Language Processing
2 (defsystem "nlp"
3  :version "0.1.0"
4  :maintainer "Richard Westhaver <ellis@rwest.io>"
5  :bug-tracker "https://lab.rwest.io/comp/core/issues"
6  :class :package-inferred-system
7  :defsystem-depends-on (:asdf-package-system)
8  :depends-on (:std :rdb :cl-ppcre :parse :nlp/pkg)
9  :components ((:file "pkg")
10  (:file "data")
11  (:file "tokenize")
12  (:file "doc")
13  (:module "stem"
14  :components
15  ((:file "porter")))
16  (:file "textrank")
17  (:file "dbscan")
18  (:file "section"))
19  :in-order-to ((test-op (test-op :nlp/tests))))
20 
21 
22 (defsystem :nlp/tests
23  :depends-on (:rt :log :nlp)
24  :components ((:file "tests"))
25  :in-order-to ((test-op (uiop:symbol-call :rt :do-tests :nlp))))