Lines Matching +full:version +full:- +full:script
18 .. _pure-mod:
25 ``py_modules`` option in the setup script.
27 In the simplest case, you'll have two files to worry about: a setup script and
35 directory.) A minimal setup script to describe this situation would be::
39 version='1.0',
58 and the setup script might be ::
62 version='1.0',
71 .. _pure-pkg:
83 The setup script from the last example could also be written as ::
87 version='1.0',
106 version='1.0',
112 package (or in sub-packages). For example, if the :mod:`foo` and :mod:`bar`
124 requires the least work to describe in your setup script::
128 version='1.0',
143 an appropriate setup script would be ::
147 version='1.0',
161 in which case your setup script would be ::
165 version='1.0',
172 If you have sub-packages, they must be explicitly listed in ``packages``,
173 but any entries in ``package_dir`` automatically extend to sub-packages.
176 :file:`__init__.py` files.) Thus, if the default layout grows a sub-package::
188 then the corresponding setup script would be ::
192 version='1.0',
197 .. _single-ext:
211 If the :mod:`foo` extension belongs in the root package, the setup script for
217 version='1.0',
229 version='1.0',
234 .. % \label{multiple-ext}