diff options
author | Georg Brandl <georg@python.org> | 2009-01-01 13:02:09 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-01-01 13:02:09 (GMT) |
commit | da550b060bd11fb753e75c6392523e7900f73ef2 (patch) | |
tree | 736436d60cb43c1bde741c4a8cf5171b1885dacc /Doc/distutils | |
parent | 914fc88cdc0a099e2a7021e48dc9ce339c81e89d (diff) | |
download | cpython-da550b060bd11fb753e75c6392523e7900f73ef2.zip cpython-da550b060bd11fb753e75c6392523e7900f73ef2.tar.gz cpython-da550b060bd11fb753e75c6392523e7900f73ef2.tar.bz2 |
#4776: add data_files and package_dir arguments.
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/apiref.rst | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/Doc/distutils/apiref.rst b/Doc/distutils/apiref.rst index 65f175f..4a0d354 100644 --- a/Doc/distutils/apiref.rst +++ b/Doc/distutils/apiref.rst @@ -88,9 +88,9 @@ setup script). Indirectly provides the :class:`distutils.dist.Distribution` and | *options* | default options for the setup | a string | | | script | | +--------------------+--------------------------------+-------------------------------------------------------------+ - | *license* | The license for the package | | + | *license* | The license for the package | a string | +--------------------+--------------------------------+-------------------------------------------------------------+ - | *keywords* | Descriptive meta-data. See | | + | *keywords* | Descriptive meta-data, see | | | | :pep:`314` | | +--------------------+--------------------------------+-------------------------------------------------------------+ | *platforms* | | | @@ -98,6 +98,13 @@ setup script). Indirectly provides the :class:`distutils.dist.Distribution` and | *cmdclass* | A mapping of command names to | a dictionary | | | :class:`Command` subclasses | | +--------------------+--------------------------------+-------------------------------------------------------------+ + | *data_files* | A list of data files to | a list | + | | install | | + +--------------------+--------------------------------+-------------------------------------------------------------+ + | *package_dir* | A mapping of package to | a dictionary | + | | directory names | | + +--------------------+--------------------------------+-------------------------------------------------------------+ + .. function:: run_setup(script_name[, script_args=None, stop_after='run']) |