-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathratify.asd
25 lines (25 loc) · 861 Bytes
/
ratify.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
(defsystem ratify
:name "Ratify"
:version "0.1.0"
:license "zlib"
:author "Yukari Hafner <shinmera@tymoon.eu>"
:maintainer "Yukari Hafner <shinmera@tymoon.eu>"
:description "A collection of utilities to ratify, validate and parse inputs."
:homepage "https://Shinmera.github.io/ratify/"
:bug-tracker "https://github.com/Shinmera/ratify/issues"
:source-control (:git "https://github.com/Shinmera/ratify.git")
:serial T
:components ((:file "package")
(:file "toolkit")
(:file "testing")
(:file "parsing")
(:file "uri")
(:file "url")
(:file "email")
(:file "css")
(:file "date")
(:file "types")
(:file "html"))
:depends-on (:cl-ppcre
:local-time
:parse-float))