hsx/hsx.asd

13 lines
448 B
Text
Raw Normal View History

2024-05-25 21:48:35 +09:00
(defsystem "hsx"
2024-02-09 01:37:34 +09:00
:version "0.1.0"
:description "A beautiful, easily composable HTML5 generation library"
2024-05-27 16:54:46 +09:00
:author "skyizwhite, Bo Yao"
2024-02-15 13:46:27 +09:00
:maintainer "skyizwhite <paku@skyizwhite.dev>"
2018-07-01 15:13:53 -04:00
:license "MIT"
2024-02-09 01:37:34 +09:00
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
2024-05-25 21:48:35 +09:00
:in-order-to ((test-op (test-op hsx-test)))
2024-02-09 01:37:34 +09:00
:class :package-inferred-system
:pathname "src"
2024-05-25 21:48:35 +09:00
:depends-on ("hsx/main"))