[Checkins] SVN: zope.modulealias/trunk/ Update meta-data and get ready for release.

Stephan Richter srichter at cosmos.phy.tufts.edu
Tue Oct 2 22:46:31 EDT 2007


Log message for revision 80524:
  Update meta-data and get ready for release.
  

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

-=-
Added: zope.modulealias/trunk/CHANGES.txt
===================================================================
--- zope.modulealias/trunk/CHANGES.txt	                        (rev 0)
+++ zope.modulealias/trunk/CHANGES.txt	2007-10-03 02:46:31 UTC (rev 80524)
@@ -0,0 +1,8 @@
+=======
+CHANGES
+=======
+
+3.4.0 (2007-10-02)
+------------------
+
+- Initial release independent of the main Zope tree.


Property changes on: zope.modulealias/trunk/CHANGES.txt
___________________________________________________________________
Name: svn:eol-style
   + native

Added: zope.modulealias/trunk/README.txt
===================================================================
--- zope.modulealias/trunk/README.txt	                        (rev 0)
+++ zope.modulealias/trunk/README.txt	2007-10-03 02:46:31 UTC (rev 80524)
@@ -0,0 +1,6 @@
+===============
+Module Aliasing
+===============
+
+This package enables the developer to make one module available under a
+different path.


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

Modified: zope.modulealias/trunk/buildout.cfg
===================================================================
--- zope.modulealias/trunk/buildout.cfg	2007-10-03 02:30:14 UTC (rev 80523)
+++ zope.modulealias/trunk/buildout.cfg	2007-10-03 02:46:31 UTC (rev 80524)
@@ -2,8 +2,6 @@
 develop = .
 parts = test
 
-find-links = http://download.zope.org/distribution/
-
 [test]
 recipe = zc.recipe.testrunner
-eggs = zope.modulealias
+eggs = zope.modulealias [test]

Deleted: zope.modulealias/trunk/setup.cfg
===================================================================
--- zope.modulealias/trunk/setup.cfg	2007-10-03 02:30:14 UTC (rev 80523)
+++ zope.modulealias/trunk/setup.cfg	2007-10-03 02:46:31 UTC (rev 80524)
@@ -1,2 +0,0 @@
-[egg_info]
-tag_svn_revision = 1
\ No newline at end of file

Modified: zope.modulealias/trunk/setup.py
===================================================================
--- zope.modulealias/trunk/setup.py	2007-10-03 02:30:14 UTC (rev 80523)
+++ zope.modulealias/trunk/setup.py	2007-10-03 02:46:31 UTC (rev 80524)
@@ -15,25 +15,45 @@
 
 $Id$
 """
-
+import os
 from setuptools import setup, find_packages
 
-setup(
-    name="zope.modulealias",
-    version = '3.4.0b1',
-    url='http://svn.zope.org/zope.modulealias',
-    license='ZPL 2.1',
-    description='Zope modulealias',
-    author='Zope Corporation and Contributors',
-    author_email='zope3-dev at zope.org',
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-    packages=find_packages('src'),
-    package_dir={'':'src'},
-    namespace_packages=['zope'],
-    include_package_data=True,
+setup(name="zope.modulealias",
+      version = '3.4.0',
+      author='Zope Corporation and Contributors',
+      author_email='zope3-dev at zope.org',
+      description='Zope modulealias',
+      long_description=(
+          read('README.txt')
+          + '\n\n' +
+          read('CHANGES.txt')
+          ),
+      keywords = "zope3 module alias",
+      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',
+          'Framework :: Zope3'],
+      url='http://cheeseshop.python.org/pypi/zope.modulealias',
+      license='ZPL 2.1',
+      packages=find_packages('src'),
+      package_dir = {'': 'src'},
+      namespace_packages=['zope'],
+      extras_require = dict(
+          test=['zope.testing',
+                ]),
     install_requires = ['setuptools',
                         'zope.interface',
                         'zope.configuration'],
+    include_package_data=True,
     zip_safe = False
     )
 



More information about the Checkins mailing list