diff options
author | PJ Eby <distutils-sig@python.org> | 2006-02-15 15:10:28 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-02-15 15:10:28 +0000 |
commit | 19ec012a34cd484e3ca97dc4323a8cb8c5762ac4 (patch) | |
tree | 45514c707905d4a5b252c2b9660a8c3557f65b6d /setuptools.txt | |
parent | d488ba4a4b60666aad29bc5f411234782304e332 (diff) | |
download | external_python_setuptools-19ec012a34cd484e3ca97dc4323a8cb8c5762ac4.tar.gz external_python_setuptools-19ec012a34cd484e3ca97dc4323a8cb8c5762ac4.tar.bz2 external_python_setuptools-19ec012a34cd484e3ca97dc4323a8cb8c5762ac4.zip |
Misc. doc fixes
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4042381
Diffstat (limited to 'setuptools.txt')
-rwxr-xr-x | setuptools.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/setuptools.txt b/setuptools.txt index b1bc873f..a70bb759 100755 --- a/setuptools.txt +++ b/setuptools.txt @@ -959,6 +959,14 @@ the desired staging area if it's not the default. There are several options to control the precise behavior of the ``develop`` command; see the section on the `develop`_ command below for more details. +Note that you can also apply setuptools commands to non-setuptools projects, +using commands like this:: + + python -c "import setuptools; execfile('setup.py')" develop + +That is, you can simply list the normal setup commands and options following +the quoted part. + Distributing a ``setuptools``-based project =========================================== |