[Checkins] SVN: zope.app.locales/trunk/ Get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Thu Oct 25 11:28:35 EDT 2007


Log message for revision 81094:
  Get ready for release.
  

Changed:
  A   zope.app.locales/trunk/CHANGES.txt
  U   zope.app.locales/trunk/README.txt
  U   zope.app.locales/trunk/buildout.cfg
  D   zope.app.locales/trunk/setup.cfg
  U   zope.app.locales/trunk/setup.py

-=-
Added: zope.app.locales/trunk/CHANGES.txt
===================================================================
--- zope.app.locales/trunk/CHANGES.txt	                        (rev 0)
+++ zope.app.locales/trunk/CHANGES.txt	2007-10-25 15:28:35 UTC (rev 81094)
@@ -0,0 +1,16 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-25)
+------------------
+
+* 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/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Modified: zope.app.locales/trunk/README.txt
===================================================================
--- zope.app.locales/trunk/README.txt	2007-10-25 15:20:04 UTC (rev 81093)
+++ zope.app.locales/trunk/README.txt	2007-10-25 15:28:35 UTC (rev 81094)
@@ -4,19 +4,3 @@
 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
-

Modified: zope.app.locales/trunk/buildout.cfg
===================================================================
--- zope.app.locales/trunk/buildout.cfg	2007-10-25 15:20:04 UTC (rev 81093)
+++ zope.app.locales/trunk/buildout.cfg	2007-10-25 15:28:35 UTC (rev 81094)
@@ -1,7 +1,6 @@
 [buildout]
-develop = . 
+develop = .
 parts = extract test
-find-links = http://download.zope.org/distribution/
 
 [extract]
 recipe = zc.recipe.egg:scripts

Deleted: zope.app.locales/trunk/setup.cfg
===================================================================
--- zope.app.locales/trunk/setup.cfg	2007-10-25 15:20:04 UTC (rev 81093)
+++ zope.app.locales/trunk/setup.cfg	2007-10-25 15:28:35 UTC (rev 81094)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.app.locales/trunk/setup.py
===================================================================
--- zope.app.locales/trunk/setup.py	2007-10-25 15:20:04 UTC (rev 81093)
+++ zope.app.locales/trunk/setup.py	2007-10-25 15:28:35 UTC (rev 81094)
@@ -15,24 +15,41 @@
 
 $Id$
 """
-from setuptools import setup, find_packages, Extension
+import os
+from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+
 setup(name='zope.app.locales',
       version = '3.4.0',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Zope locale extraction and management utilities',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          'Detailed Dcoumentation\n' +
+          '----------------------\n'
+          + '\n\n' +
+          read('src', 'zope', 'app', 'locales', 'TRANSLATE.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 i18n l10n translation gettext",
+      classifiers = [
+          'Development Status :: 5 - Production/Stable',
+          'Environment :: Web Environment',
+          'Intended Audience :: Developers',
+          'License :: OSI Approved :: Zope Public License',
+          'Programming Language :: Python',
+          'Natural Language :: English',
+          'Operating System :: OS Independent',
+          'Topic :: Internet :: WWW/HTTP',
+          'Topic :: Software Development :: Internationalization',
+          'Framework :: Zope3'],
       url='http://pypi.python.org/pypi/zope.app.locales',
       license='ZPL 2.1',
-      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'],



More information about the Checkins mailing list