]> granicus.if.org Git - python/commitdiff
Fixed #6287: documentation for the license field in distutils
authorTarek Ziadé <ziade.tarek@gmail.com>
Tue, 16 Jun 2009 07:29:52 +0000 (07:29 +0000)
committerTarek Ziadé <ziade.tarek@gmail.com>
Tue, 16 Jun 2009 07:29:52 +0000 (07:29 +0000)
Doc/distutils/setupscript.rst
Misc/NEWS

index 851c904848b575823b8e334d46efe793041f71e5..bf4eeeb89a5c201f923e8157531e671a85be863f 100644 (file)
@@ -590,6 +590,8 @@ This information includes:
 +----------------------+---------------------------+-----------------+--------+
 | ``platforms``        | a list of platforms       | list of strings |        |
 +----------------------+---------------------------+-----------------+--------+
+| ``license``          | license for the package   | short string    | \(6)   |
++----------------------+---------------------------+-----------------+--------+
 
 Notes:
 
@@ -611,6 +613,13 @@ Notes:
     The ``long_description`` field is used by PyPI when you are registering a
     package, to build its home page.
 
+(6)
+    The ``license`` field is a text indicating the license covering the
+    package where the license is not a selection from the "License" Trove
+    classifiers. See the ``Classifier`` field. Notice that
+    there's a ``licence`` distribution option which is deprecated but still
+    acts as an alias for ``license``.
+
 'short string'
     A single line of text, not more than 200 characters.
 
index 44f30e0c5fed3a36eb4871f5620abb622b82a865..ab00d383c24298ba88b6e705fa3c7274459fc546 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -327,6 +327,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #6287: Added the license field in Distutils documentation.
+
 - Issue #6286: Now Distutils upload command is based on urllib2 instead of
   httplib, allowing the usage of http_proxy.