www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

info.rkt (1229B)


      1 #lang info
      2 (define collection "hyper-literate")
      3 (define deps '("base"
      4                "rackunit-lib"
      5                "at-exp-lib"
      6                "scheme-lib"
      7                "scribble-lib"
      8                "typed-racket-lib"
      9                "typed-racket-more"
     10                "typed-racket-doc"
     11                "scribble-enhanced"
     12                "sexp-diff"
     13                "tr-immutable"
     14                "typed-map-lib"
     15                "debug-scopes"
     16                "syntax-color-lib"))
     17 (define build-deps '("scribble-lib"
     18                      "racket-doc"
     19                      "rackunit-doc"
     20                      "scribble-doc"
     21                      "rackunit-doc"))
     22 (define scribblings '(("scribblings/hyper-literate.scrbl" () ("Scribble Libraries"))
     23                       ("test/test.hl.rkt" () (omit-start))
     24                       ("test/test2.hl.rkt" () (omit-start))))
     25 (define pkg-desc
     26   (string-append "Hyper-literate programming is to literate programming exactly"
     27                  " what hypertext documents are to regular books and texts."
     28                  " For now, this is based on scribble/lp2, and only contains"
     29                  " some ε-improvements over it"))
     30 (define version "0.2")
     31 (define pkg-authors '(|Suzanne Soy|))