[Checkins] SVN: z3c.table/branches/lazyvalues/setup.py pep8

Godefroid Chapelle gotcha at bubblenet.be
Wed Jul 7 10:10:43 EDT 2010


Log message for revision 114288:
  pep8
  remove ids
  include chopped doctests in description
  

Changed:
  U   z3c.table/branches/lazyvalues/setup.py

-=-
Modified: z3c.table/branches/lazyvalues/setup.py
===================================================================
--- z3c.table/branches/lazyvalues/setup.py	2010-07-07 13:58:33 UTC (rev 114287)
+++ z3c.table/branches/lazyvalues/setup.py	2010-07-07 14:10:42 UTC (rev 114288)
@@ -12,33 +12,40 @@
 #
 ##############################################################################
 """Setup
-
-$Id:$
 """
 import os
 from setuptools import setup, find_packages
 
+
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-setup (
+
+setup(
     name='z3c.table',
-    version = '0.8.1dev',
-    author = "Stephan Richter, Roger Ineichen and the Zope Community",
-    author_email = "zope-dev at zope.org",
-    description = "Modular table rendering implementation for Zope3",
+    version='0.8.1dev',
+    author="Stephan Richter, Roger Ineichen and the Zope Community",
+    author_email="zope-dev at zope.org",
+    description="Modular table rendering implementation for Zope3",
     long_description=(
         read('README.txt')
         + '\n\n' +
         read('src', 'z3c', 'table', 'README.txt')
         + '\n\n' +
+        read('src', 'z3c', 'table', 'sort.txt')
+        + '\n\n' +
+        read('src', 'z3c', 'table', 'batch.txt')
+        + '\n\n' +
+        read('src', 'z3c', 'table', 'sequence.txt')
+        + '\n\n' +
         read('src', 'z3c', 'table', 'column.txt')
         + '\n\n' +
-        read('CHANGES.txt')
-        ),
-    license = "ZPL 2.1",
-    keywords = "zope3 z3c table content provider",
-    classifiers = [
+        read('src', 'z3c', 'table', 'miscellaneous.txt')
+        + '\n\n' +
+        read('CHANGES.txt')),
+    license="ZPL 2.1",
+    keywords="zope3 z3c table content provider",
+    classifiers=[
         'Development Status :: 4 - Beta',
         'Environment :: Web Environment',
         'Intended Audience :: Developers',
@@ -48,13 +55,13 @@
         'Operating System :: OS Independent',
         'Topic :: Internet :: WWW/HTTP',
         'Framework :: Zope3'],
-    url = 'http://pypi.python.org/pypi/z3c.table',
-    packages = find_packages('src'),
-    include_package_data = True,
-    package_dir = {'':'src'},
-    namespace_packages = ['z3c'],
-    extras_require = dict(
-        test = [
+    url='http://pypi.python.org/pypi/z3c.table',
+    packages=find_packages('src'),
+    include_package_data=True,
+    package_dir={'': 'src'},
+    namespace_packages=['z3c'],
+    extras_require=dict(
+        test=[
             'z3c.testing',
             'zope.app.testing',
             'zope.publisher',
@@ -62,7 +69,7 @@
             'zope.testing',
             ],
         ),
-    install_requires = [
+    install_requires=[
         'setuptools',
         'z3c.batching>=1.1.0',
         'zope.component',
@@ -76,5 +83,5 @@
         'zope.security',
         'zope.traversing',
         ],
-    zip_safe = False,
+    zip_safe=False,
 )



More information about the checkins mailing list