File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111
1212import re
1313
14- # Distribution target: 'all', 'ndt', 'nd'
14+ #
15+ # DyND is a namespace package that contains the type module dynd.ndt and
16+ # the array/callables module dynd.nd. These are the supported install
17+ # methods together with the resulting directory hierarchies:
18+ #
19+ # 1) DIST_TARGET = 'all':
20+ # dynd-x.y.z/dynd/ndt/*
21+ # dynd-x.y.z/dynd/nd/*
22+ #
23+ # 2) DIST_TARGET = 'ndt':
24+ # dynd.ndt-x.y.z/dynd/ndt/*
25+ #
26+ # 3) DIST_TARGET = 'nd':
27+ # dynd.nd-x.y.z/dynd/nd/*
28+ #
29+ # In this case also add dynd.ndt to requirements.txt.
30+ #
31+ # A single Python install should use either option 1) OR option 2) OR
32+ # option 2) followed by option 3). All options require a clean build
33+ # directory. At the minimum build/, dist/ and dynd.egg* must be removed.
34+ #
1535DIST_TARGET = 'all'
1636class Target ():
1737 def __init__ (self , target ):
You can’t perform that action at this time.
0 commit comments