[Erp5-report] r37441 nicolas - /erp5/trunk/utils/erp5.utils.web_checker/setup.py

nobody at svn.erp5.org nobody at svn.erp5.org
Tue Aug 3 16:13:43 CEST 2010


Author: nicolas
Date: Tue Aug  3 16:13:43 2010
New Revision: 37441

URL: http://svn.erp5.org?rev=37441&view=rev
Log:
Fix copy/paste issue

Modified:
    erp5/trunk/utils/erp5.utils.web_checker/setup.py

Modified: erp5/trunk/utils/erp5.utils.web_checker/setup.py
URL: http://svn.erp5.org/erp5/trunk/utils/erp5.utils.web_checker/setup.py?rev=37441&r1=37440&r2=37441&view=diff
==============================================================================
--- erp5/trunk/utils/erp5.utils.web_checker/setup.py [utf8] (original)
+++ erp5/trunk/utils/erp5.utils.web_checker/setup.py [utf8] Tue Aug  3 16:13:43 2010
@@ -2,36 +2,36 @@
 from setuptools import setup, find_packages
 import sys, os
 
-version = '0.9.3'
+version = '0.0.1b'
+name = 'erp5.utils.web_checker'
 
-setup(name='xml_marshaller',
+def read(name):
+    return open(name).read()
+
+long_description=(
+        read('README.txt')
+        + '\n' +
+        read('CHANGES.txt')
+    )
+
+
+setup(name=name,
       version=version,
-      description="Converting Python objects to XML and back again.",
-      long_description="""
-Marshals simple Python data types into a custom XML format.
-The Marshaller and Unmarshaller classes can be subclassed in order
-to implement marshalling into a different XML DTD.
-Original Authors are XML-SIG (xml-sig at python.org).
-Fully compatible with PyXML implementation, enable namespace support for
-XML Input/Output.
-Implemented with lxml""",
-classifiers=['Development Status :: 4 - Beta',
-             'Intended Audience :: Developers',
-             'License :: OSI Approved :: Python License (CNRI Python License)',
-             'Operating System :: OS Independent',
-             'Topic :: Text Processing :: Markup :: XML'], 
-      keywords='XML marshaller',
-      author='XML-SIG',
-      author_email='xml-sig at python.org',
-      maintainer='Nicolas Delaby',
-      maintainer_email='nicolas at nexedi.com',
-      url='http://www.python.org/community/sigs/current/xml-sig/',
-      license='Python License (CNRI Python License)',
-      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
+      description="Utility to check caching policy of websites",
+      long_description=long_description,
+classifiers=[
+  'Development Status :: 4 - Beta',
+  'Intended Audience :: System Administrators',
+  'License :: OSI Approved :: GNU General Public License (GPL)',
+  'Operating System :: POSIX',
+  'Topic :: Internet :: WWW/HTTP',
+  'Topic :: Utilities',
+  ], 
+      keywords='HTTP proxy cache varnish wget',
+      author='Nicolas Delaby',
+      author_email='nicolas at nexedi.com',
+      url='http://www.erp5.org/',
+      package_dir = {'':'src'},
+      packages = find_packages('src'),
       include_package_data=True,
-      zip_safe=False,
-      install_requires=['lxml',],
-      entry_points="""
-      # -*- Entry points: -*-
-      """,
       )




More information about the Erp5-report mailing list