[Repoze-checkins] r1225 - in template/trunk: . repoze

Chris McDonough chrism at agendaless.com
Fri Jul 4 00:37:01 EDT 2008


Author: Chris McDonough <chrism at agendaless.com>
Date: Fri Jul  4 00:37:00 2008
New Revision: 1225

Log:
Better defaults.


Modified:
   template/trunk/COPYRIGHT.txt
   template/trunk/repoze/__init__.py
   template/trunk/setup.py

Modified: template/trunk/COPYRIGHT.txt
==============================================================================
--- template/trunk/COPYRIGHT.txt	(original)
+++ template/trunk/COPYRIGHT.txt	Fri Jul  4 00:37:00 2008
@@ -1,3 +1,3 @@
-Copyright (c) 2007 Agendaless Consulting and Contributors.
+Copyright (c) 2008 Agendaless Consulting and Contributors.
 (http://www.agendaless.com), All Rights Reserved
 

Modified: template/trunk/repoze/__init__.py
==============================================================================
--- template/trunk/repoze/__init__.py	(original)
+++ template/trunk/repoze/__init__.py	Fri Jul  4 00:37:00 2008
@@ -1,2 +1 @@
-# repoze package
 __import__('pkg_resources').declare_namespace(__name__)

Modified: template/trunk/setup.py
==============================================================================
--- template/trunk/setup.py	(original)
+++ template/trunk/setup.py	Fri Jul  4 00:37:00 2008
@@ -23,21 +23,22 @@
 
 here = os.path.abspath(os.path.dirname(__file__))
 README = open(os.path.join(here, 'README.txt')).read()
+CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
 
 setup(name='repoze.atemplate',
       version=__version__,
       description='A template for repoze projects',
-      long_description=README,
+      long_description=README + '\n\n' +  CHANGES,
       classifiers=[
-        "Development Status :: 1 - Planning",
+        "Development Status :: 3 - Alpha",
         "Intended Audience :: Developers",
         "Programming Language :: Python",
         "Topic :: Internet :: WWW/HTTP",
         "Topic :: Internet :: WWW/HTTP :: Dynamic Content",
         "Topic :: Internet :: WWW/HTTP :: WSGI",
-        "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
+        "Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
         ],
-      keywords='web application server wsgi zope',
+      keywords='web wsgi zope',
       author="Agendaless Consulting",
       author_email="repoze-dev at lists.repoze.org",
       url="http://www.repoze.org",


More information about the Repoze-checkins mailing list