Lines Matching full:setup
25 * write a setup script (:file:`setup.py` by convention)
27 * (optional) write a setup configuration file
42 their platform, without having to run a single setup script or compile a line of
51 The setup script is usually quite simple, although since it's written in Python,
53 careful about putting arbitrarily expensive operations in your setup script.
54 Unlike, say, Autoconf-style configure scripts, the setup script may be run
59 file :file:`foo.py`, then your setup script can be as simple as this::
61 from distutils.core import setup
62 setup(name='foo',
70 arguments to the :func:`setup` function
80 name, email address and a URL for the project (see section :ref:`setup-script`
83 To create a source distribution for this module, you would create a setup
84 script, :file:`setup.py`, containing the above code, and run this command from a
87 python setup.py sdist
92 setup.py sdist
95 containing your setup script :file:`setup.py`, and your module :file:`foo.py`.
103 python setup.py install
110 the setup script. The difference is which Distutils *commands* they use: the
121 python setup.py bdist_wininst
132 python setup.py bdist_rpm
141 python setup.py bdist --help-formats
213 directory where :file:`setup.py` exists. Generally :file:`setup.py` will be