[Checkins] SVN: mongopersist/trunk/setup.py Get ready for release

Stephan Richter srichter at gmail.com
Fri Nov 4 17:38:32 UTC 2011


Log message for revision 123287:
  Get ready for release

Changed:
  U   mongopersist/trunk/setup.py

-=-
Modified: mongopersist/trunk/setup.py
===================================================================
--- mongopersist/trunk/setup.py	2011-11-04 17:22:49 UTC (rev 123286)
+++ mongopersist/trunk/setup.py	2011-11-04 17:38:31 UTC (rev 123287)
@@ -3,12 +3,17 @@
 import os
 from setuptools import setup, find_packages
 
+def read(*rnames):
+    text = open(os.path.join(os.path.dirname(__file__), *rnames)).read()
+    return unicode(text, 'utf-8').encode('ascii', 'xmlcharrefreplace')
+
 setup (
     name='mongopersist',
-    version='0.5.0dev',
+    version='0.5.0',
     author = "Stephan Richter",
     author_email = "stephan.richter at gmail.com",
     description = "Mongo Persistence Backend",
+    long_description=read('src', 'mongopersist', 'README.txt'),
     license = "ZPL 2.1",
     keywords = "mongo persistent ",
     classifiers = [



More information about the checkins mailing list