-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwiki-lang-detect.asd
28 lines (27 loc) · 1.05 KB
/
wiki-lang-detect.asd
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
(in-package #:asdf-user)
(defsystem #:wiki-lang-detect
:version (:read-file-line "version.txt" :at 0)
:description "Text language detection based on Wikipedia data with 170 suported languages."
:author "Vsevolod Dyomkin <[email protected]>"
:maintainer "Vsevolod Dyomkin <[email protected]>"
:depends-on (#:rutilsx #:cl-unicode #:cl-ppcre #:cxml #:chipz #:gzip-stream
#:zip #:babel #:flexi-streams #:drakma #:local-time
#+dev #:should-test
#+prod #:cl-json #+prod #:woo #+prod #:http-body)
:serial t
:components
((:module "src" :serial t
:components ((:file "packages")
(:file "iso-lang")
(:file "huffman")
(:file "model")
(:file "core")
#+train (:file "wiki")
#+prod (:file "api")
(:file "user")))
#+dev
(:module "test" :serial t
:components ((:file "util-test")
(:file "quality-test")
(:file "alt-test")
(:file "api-test")))))