[Checkins] SVN: gocept.registration/trunk/ add CHANGES.txt files and more egg info.

Paul Carduner paulcarduner at gmail.com
Fri Mar 28 12:46:03 EDT 2008


Log message for revision 84998:
  add CHANGES.txt files and more egg info.

Changed:
  A   gocept.registration/trunk/CHANGES.txt
  U   gocept.registration/trunk/setup.py

-=-
Added: gocept.registration/trunk/CHANGES.txt
===================================================================
--- gocept.registration/trunk/CHANGES.txt	                        (rev 0)
+++ gocept.registration/trunk/CHANGES.txt	2008-03-28 16:46:02 UTC (rev 84998)
@@ -0,0 +1,7 @@
+Changes
+=======
+
+0.1.0 (unreleased)
+------------------
+
+ * Initial release.
\ No newline at end of file

Modified: gocept.registration/trunk/setup.py
===================================================================
--- gocept.registration/trunk/setup.py	2008-03-28 16:23:23 UTC (rev 84997)
+++ gocept.registration/trunk/setup.py	2008-03-28 16:46:02 UTC (rev 84998)
@@ -16,19 +16,38 @@
 
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
+
 setup(
     name = 'gocept.registration',
-    version = "0.1",
+    version = "0.1.0dev",
     author = "Christian Theune, Stephan Richter and others",
     author_email = "mail at gocept.com",
     description = "User self-registration",
-    long_description = file(os.path.join(os.path.dirname(__file__),
-                                         'src', 'gocept', 'registration',
-                                         'README.txt')).read(),
+    long_description = (read('README.txt')
+                        + '\n\n' +
+                        read('src', 'gocept', 'registration',
+                            'README.txt')
+                        + '\n\n' +
+                        read('CHANGES.txt')
+    ),
     license = "ZPL 2.1",
     url='http://pypi.python.org/pypi/gocept.registration/',
+    keywords = "zope3 gocept user registration",
+    classifiers = [
+        'Development Status :: 4 - Beta',
+        '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'],
 
+
     packages = find_packages('src'),
     package_dir = {'': 'src'},
 



More information about the Checkins mailing list