opental-checkins
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[OpenTAL-checkins] opental/OpenTAL setup.py


From: Fernando Lalo Martins
Subject: [OpenTAL-checkins] opental/OpenTAL setup.py
Date: Wed, 26 Feb 2003 15:02:49 -0500

CVSROOT:        /cvsroot/opental
Module name:    opental
Changes by:     Fernando Lalo Martins <address@hidden>  03/02/26 15:02:49

Modified files:
        OpenTAL        : setup.py 

Log message:
        metadata for Python Package Index

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/opental/opental/OpenTAL/setup.py.diff?tr1=1.5&tr2=1.6&r1=text&r2=text

Patches:
Index: opental/OpenTAL/setup.py
diff -u opental/OpenTAL/setup.py:1.5 opental/OpenTAL/setup.py:1.6
--- opental/OpenTAL/setup.py:1.5        Thu Jan 16 20:39:49 2003
+++ opental/OpenTAL/setup.py    Wed Feb 26 15:02:49 2003
@@ -17,6 +17,12 @@
 #    along with this program; if not, write to the Free Software
 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA
 
+# patch distutils if it can't cope with the "classifiers" keyword
+import sys
+if sys.version < '2.2.3':
+    from distutils.dist import DistributionMetadata
+    DistributionMetadata.classifiers = None
+
 from distutils.core import setup
 setup (name = "OpenTAL",
        version = "0.3",
@@ -24,6 +30,18 @@
        author = "Lalo Martins",
        author_email = "address@hidden",
        url = "http://www.nongnu.org/opental/";,
+       long_description = "An extensible implementation of the Template 
Attribute Language (TAL), complete with its siblings MeTAL (macros) and TALES 
(TAL Expression Syntax), and code to run TAL templates from Python (outside 
Zope)",
+       keywords = "xml tal pagetemplates",
+       classifiers = [
+           "Development Status :: 3 - Alpha",
+           "Intended Audience :: Developers",
+           "License :: OSI Approved :: GNU General Public License (GPL)",
+           "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
+           "Topic :: Text Processing :: Markup",
+           "Topic :: Text Processing :: Markup :: HTML",
+           "Topic :: Text Processing :: Markup :: XML",
+       ],
+       license = "GPL",
        package_dir = {'OpenTAL':'.'},
        packages = ['OpenTAL', 'OpenTAL.Static']
        )




reply via email to

[Prev in Thread] Current Thread [Next in Thread]