forked from ntoronto/pict3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinfo.rkt
38 lines (33 loc) · 1 KB
/
info.rkt
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
34
35
36
37
38
#lang info
(define collection 'multi)
(define deps '(("base" #:version "6.3")
"draw-lib"
"srfi-lite-lib"
"typed-racket-lib"
"typed-racket-more"
"math-lib"
"scribble-lib"
"gui-lib"
"pconvert-lib"
"pict-lib" ; why?
"profile-lib" ; for tests
"pfds"
"unstable-lib"
))
(define build-deps '("draw-doc"
"gui-doc"
"gui-lib"
"racket-doc"
"plot-doc"
"plot-lib"
"plot-gui-lib"
"images-doc"
"images-lib"
"htdp-doc"
"htdp-lib"
"pict-doc"
"typed-racket-doc"
))
(define pkg-desc "Pict3D: Functional 3D Scenes")
(define pkg-authors '(ntoronto))
(define version "1.2")