Skip to content

Commit c2c2ca7

Browse files
committed
Add comment for DIST_TARGET.
1 parent f3d2abb commit c2c2ca7

1 file changed

Lines changed: 21 additions & 1 deletion

File tree

setup.py

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,27 @@
1111

1212
import 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+
#
1535
DIST_TARGET = 'all'
1636
class Target():
1737
def __init__(self, target):

0 commit comments

Comments
 (0)