-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.rkt
More file actions
20 lines (20 loc) · 752 Bytes
/
info.rkt
File metadata and controls
20 lines (20 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#lang info
(define collection "cli")
(define deps '("base"
"mischief"
"version-case"))
(define build-deps '("scribble-lib"
"scribble-abbrevs"
"racket-doc"
"rackunit-lib"
"cover"
"cover-coveralls"
"sandbox-lib"))
(define scribblings '(("scribblings/cli.scrbl" ())))
(define compile-omit-paths '("dev" "tests" "coverage"))
(define test-include-paths '("tests"))
(define test-omit-paths '("dev" "coverage"))
(define clean '("compiled" "doc" "doc/cli" "private/compiled"))
(define pkg-desc "A language for writing Command Line Interfaces")
(define version "1.0")
(define pkg-authors '(countvajhula))