[Checkins] SVN: zope.app.locales/trunk/ Add proper long_description (README incl. changelog)

Philipp von Weitershausen philikon at philikon.de
Wed Sep 12 16:44:57 EDT 2007


Log message for revision 79601:
  Add proper long_description (README incl. changelog)
  

Changed:
  A   zope.app.locales/trunk/README.txt
  U   zope.app.locales/trunk/setup.py

-=-
Added: zope.app.locales/trunk/README.txt
===================================================================
--- zope.app.locales/trunk/README.txt	                        (rev 0)
+++ zope.app.locales/trunk/README.txt	2007-09-12 20:44:57 UTC (rev 79601)
@@ -0,0 +1,22 @@
+This package provides some facilities for extracting and managing i18n
+messages that occur in Zope software.  More specifically, i18n
+messages can occur in Python code, in Page Templates and in ZCML
+declarations.  ``zope.app.locales`` provides a utility that can
+extract messages from all three and write them to a standard gettext
+template (``pot`` file).
+
+Changes
+=======
+
+3.4.0 (unreleased)
+------------------
+
+* Folded the i18nextract script into ``zope.app.locales.extract`` and
+  exposed it as a console script entry point.
+
+3.4.0a1 (2007-04-22)
+--------------------
+
+Initial release as a separate project, corresponds to zope.app.locales
+from Zope 3.4.0a1
+


Property changes on: zope.app.locales/trunk/README.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.app.locales/trunk/setup.py
===================================================================
--- zope.app.locales/trunk/setup.py	2007-09-12 20:35:30 UTC (rev 79600)
+++ zope.app.locales/trunk/setup.py	2007-09-12 20:44:57 UTC (rev 79601)
@@ -18,16 +18,24 @@
 from setuptools import setup, find_packages, Extension
 
 setup(name='zope.app.locales',
-      version = '3.4.0b1',
-      url='http://svn.zope.org/zope.app.locales',
+      version = '3.4.0',
+      url='http://pypi.python.org/pypi/zope.app.locales',
       license='ZPL 2.1',
-      description='Zope locales',
+      description='Zope locale extraction and management utilities',
+      long_description=open('README.txt').read(),
       author='Zope Corporation and Contributors',
       author_email='zope3-dev at zope.org',
+      classifiers=['Environment :: Web Environment',
+                   'Intended Audience :: Developers',
+                   'License :: OSI Approved :: Zope Public License',
+                   'Programming Language :: Python',
+                   'Topic :: Software Development :: Internationalization',
+                   'Framework :: Zope3',
+                   ],
+
       packages=find_packages('src'),
       package_dir = {'': 'src'},
       namespace_packages=['zope', 'zope.app'],
-      extras_require = dict(test=['zope.testing']),
       install_requires=['setuptools',
                         'zope.app.applicationcontrol',
                         'zope.app.appsetup',
@@ -35,6 +43,7 @@
                         'zope.interface',
                         'zope.tal',
                         ],
+      extras_require = dict(test=['zope.testing']),
       include_package_data = True,
       zip_safe = False,
       entry_points="""



More information about the Checkins mailing list