-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmall-dna.asd
33 lines (32 loc) · 1.28 KB
/
small-dna.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
29
30
31
32
33
(asdf:defsystem small-dna
:version "0.1.0"
:description "An extensible to small for designing DNA-nanostructures."
:license "Contact Authour"
:author "Durham Smith <[email protected]>"
:maintainer "Durham Smith <[email protected]>"
;;:homepage "https://durhamsmith.github.io/small/"
:bug-tracker "https://github.com/DurhamSmith/small/issues"
:source-control (:git "https://github.com/DurhamSmith/small.git")
:serial T
:components ((:file "src/dna/packages")
(:file "src/dna/dna")
(:file "src/dna/dna-nt")
(:file "src/dna/dna-strand")
(:file "src/dna/dna-helix-strand")
(:file "src/dna/dna-single-strand")
)
:depends-on (:small))
;; (asdf:defsystem staple-dna
;; :version "1.0.0"
;; :license "zlib"
;; :author "Nicolas Hafner <[email protected]>"
;; :maintainer "Nicolas Hafner <[email protected]>"
;; :description "Markdown processing support for Staple"
;; :homepage "https://Shinmera.github.io/staple/"
;; :bug-tracker "https://github.com/Shinmera/staple/issues"
;; :source-control (:git "https://github.com/Shinmera/staple.git")
;; :serial T
;; :components ((:file "markdown"))
;; :depends-on (:staple
;; :3bmd
;; :3bmd-ext-code-blocks))