[Checkins] SVN: Sandbox/baijum/z3hello/trunk/ prepare for a rlease

Baiju M baiju.m.mail at gmail.com
Fri Jan 1 04:33:27 EST 2010


Log message for revision 107485:
  prepare for a rlease
  

Changed:
  U   Sandbox/baijum/z3hello/trunk/README.txt
  U   Sandbox/baijum/z3hello/trunk/setup.py

-=-
Modified: Sandbox/baijum/z3hello/trunk/README.txt
===================================================================
--- Sandbox/baijum/z3hello/trunk/README.txt	2010-01-01 08:53:24 UTC (rev 107484)
+++ Sandbox/baijum/z3hello/trunk/README.txt	2010-01-01 09:33:26 UTC (rev 107485)
@@ -1,20 +1,50 @@
-*******
 z3hello
-*******
+=======
 
-A Zope 3 hello application 
+Introduction
+============
 
+This is a helloworld web application created using Zope packages. 
+
+Installation
+============
+
+- Download and extract the tar ball::
+
+    wget -c http://pypi.python.org/packages/source/z/z3hello/z3hello-0.3.tar.gz
+    tar zxvf z3hello-0.3.tar.gz
+    cd z3hello
+
+- Run bootstrap.py::
+
+    python2.6 bootstrap.py
+
+- Run buildout::
+
+    ./bin/buildout
+
+- Run application::
+
+    ./bin/paster serve deploy.ini
+
+- Now access site at: http://localhost:8080/hello
+
+
 Releases
-********
+========
 
-==================
-0.2   (2007/03/19)
-==================
+0.3 (2010-01-01)
+----------------
 
+- No special instance recipe
+- Use PasteDeploy
+
+0.2 (2007-03-19)
+----------------
+
 Use zc.zope3recipes:app recipe
 
-==================
-0.1   (2007/03/19)
-==================
+0.1 (2007-03-19)
+----------------
 
 Initial release of Zope 3 hello app.

Modified: Sandbox/baijum/z3hello/trunk/setup.py
===================================================================
--- Sandbox/baijum/z3hello/trunk/setup.py	2010-01-01 08:53:24 UTC (rev 107484)
+++ Sandbox/baijum/z3hello/trunk/setup.py	2010-01-01 09:33:26 UTC (rev 107485)
@@ -21,59 +21,58 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
-setup(name = 'z3hello',
-      version = '0.2',
-      url = 'http://svn.zope.org/Sandbox/baijum/z3hello/trunk',
-      license = 'ZPL 2.1',
-      description = 'A Zope 3 hello app solely from eggs using zc.buildout',
-      author = 'Zope Corporation and Contributors',
-      author_email = 'zope3-dev at zope.org',
+setup(name='z3hello',
+      version='0.3',
+      url='http://pypi.python.org/pypi/z3hello',
+      license='ZPL 2.1',
+      description='A Zope 3 helloworld application',
+      author='Baiju M',
+      author_email='baiju.m.mail at gmail.com',
       long_description=(
         read('README.txt')
         + '\n' +
         'Download\n'
-        '**********************\n'
+        '========\n'
         ),
  
-      packages = find_packages('src'),
-      package_dir = {'': 'src'},
+      packages=find_packages('src'),
+      package_dir={'': 'src'},
 
-      tests_require = ['zope.testing'],
-      install_requires = ['setuptools',
-                          'zope.app.twisted',
-                          'zope.securitypolicy',
-                          'zope.component',
-                          'zope.annotation',
-                          'zope.app.dependable',
-                          'zope.app.content',
-                          'zope.publisher',
-                          'zope.app.broken',
-                          'zope.app.component',
-                          'zope.app.generations',
-                          'zope.app.error',
-                          'zope.app.interface',
-                          'zope.app.publisher',
-                          'zope.app.security',
-                          'zope.app.form',
-                          'zope.app.i18n',
-                          'zope.app.locales',
-                          'zope.app.zopeappgenerations',
-                          'zope.app.principalannotation',
-                          'zope.app.basicskin',
-                          'zope.app.rotterdam',
-                          'zope.app.folder',
-                          'zope.app.wsgi',
-                          'zope.formlib',
-                          'zope.i18n',
-                          'zope.app.pagetemplate',
-                          'zope.app.schema',
-                          'zope.app.container',
-                          'zope.app.debug',
-                         ],
+      install_requires=['setuptools',
+                        'zope.app.twisted',
+                        'zope.securitypolicy',
+                        'zope.component',
+                        'zope.annotation',
+                        'zope.app.dependable',
+                        'zope.app.content',
+                        'zope.publisher',
+                        'zope.app.broken',
+                        'zope.app.component',
+                        'zope.app.generations',
+                        'zope.app.error',
+                        'zope.app.interface',
+                        'zope.app.publisher',
+                        'zope.app.security',
+                        'zope.app.form',
+                        'zope.app.i18n',
+                        'zope.app.locales',
+                        'zope.app.zopeappgenerations',
+                        'zope.app.principalannotation',
+                        'zope.app.basicskin',
+                        'zope.app.rotterdam',
+                        'zope.app.folder',
+                        'zope.app.wsgi',
+                        'zope.formlib',
+                        'zope.i18n',
+                        'zope.app.pagetemplate',
+                        'zope.app.schema',
+                        'zope.app.container',
+                        'zope.app.debug',
+                        ],
 
-      include_package_data = True,
-      zip_safe = False,
-      entry_points = """
+      include_package_data=True,
+      zip_safe=False,
+      entry_points="""
       [paste.app_factory]
       main = z3hello.startup:application_factory
       """



More information about the checkins mailing list