28 lines
546 B
Racket
28 lines
546 B
Racket
#lang info
|
|
|
|
(define pkg-authors '(hnmdijkema))
|
|
(define version "1.0.1")
|
|
(define license '(Apache-2.0 OR MIT))
|
|
(define collection "let-assert")
|
|
(define pkg-desc "A let construct with assertions, i.e. when an assertion is not satisfied, one can prematurely exit a function with a given return value.")
|
|
|
|
(define scribblings
|
|
'(
|
|
("scrbl/let-assert.scrbl" () (library))
|
|
)
|
|
)
|
|
|
|
(define deps
|
|
'("racket/base")
|
|
)
|
|
|
|
(define build-deps
|
|
'("racket-doc"
|
|
"draw-doc"
|
|
"rackunit-lib"
|
|
"scribble-lib"
|
|
))
|
|
|
|
(define test-omit-paths 'all)
|
|
|