[Checkins] SVN: zope.mimetype/trunk/ - Fixed wrong package version (version ``1.1.0`` was released as ``0.4.0`` at

Michael Howitz mh at gocept.com
Fri Apr 3 15:24:39 EDT 2009


Log message for revision 98850:
  - Fixed wrong package version (version ``1.1.0`` was released as ``0.4.0`` at
    `pypi` but as ``1.1dev`` at `distribution.zope.org`)
  
  - Fixed author email and home page address.
  
  - Added coverage analysis tools to buildout.cfg
  
  

Changed:
  U   zope.mimetype/trunk/CHANGES.txt
  U   zope.mimetype/trunk/buildout.cfg
  U   zope.mimetype/trunk/setup.py

-=-
Modified: zope.mimetype/trunk/CHANGES.txt
===================================================================
--- zope.mimetype/trunk/CHANGES.txt	2009-04-03 19:23:43 UTC (rev 98849)
+++ zope.mimetype/trunk/CHANGES.txt	2009-04-03 19:24:38 UTC (rev 98850)
@@ -2,6 +2,15 @@
 CHANGES
 =======
 
+1.1.1 (unreleased)
+------------------
+
+- Fixed wrong package version (version ``1.1.0`` was released as ``0.4.0`` at
+  `pypi` but as ``1.1dev`` at `distribution.zope.org`)
+
+- Fixed author email and home page address.
+
+
 1.1.0 (2007-11-01)
 ------------------
 

Modified: zope.mimetype/trunk/buildout.cfg
===================================================================
--- zope.mimetype/trunk/buildout.cfg	2009-04-03 19:23:43 UTC (rev 98849)
+++ zope.mimetype/trunk/buildout.cfg	2009-04-03 19:24:38 UTC (rev 98850)
@@ -1,8 +1,18 @@
 [buildout]
 develop = .
-parts = test
+parts = test coverage-test coverage-report
 
 [test]
 recipe = zc.recipe.testrunner
 eggs = zope.mimetype [test]
 
+[coverage-test]
+recipe = zc.recipe.testrunner
+eggs = ${test:eggs}
+defaults = ['--coverage', '../../coverage']
+
+[coverage-report]
+recipe = zc.recipe.egg
+eggs = z3c.coverage
+scripts = coverage=coverage-report
+arguments = ('coverage', 'coverage/report')

Modified: zope.mimetype/trunk/setup.py
===================================================================
--- zope.mimetype/trunk/setup.py	2009-04-03 19:23:43 UTC (rev 98849)
+++ zope.mimetype/trunk/setup.py	2009-04-03 19:24:38 UTC (rev 98850)
@@ -21,10 +21,12 @@
 def read(*rnames):
     return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
 
+version = '1.1.1dev'
+
 setup(name='zope.mimetype',
-      version = '0.4.0',
+      version=version,
       author='Zope Corporation and Contributors',
-      author_email='zope3-dev at zope.org',
+      author_email='zope-dev at zope.org',
       description = "A simple package for working with MIME content types",
       long_description=(
           read('README.txt')
@@ -65,7 +67,7 @@
           'Operating System :: OS Independent',
           'Topic :: Internet :: WWW/HTTP',
           'Framework :: Zope3'],
-      url='http://cheeseshop.python.org/pypi/zope.mimetype',
+      url='http://pypi.python.org/pypi/zope.mimetype',
       license='ZPL 2.1',
       packages=find_packages('src'),
       package_dir = {'': 'src'},



More information about the Checkins mailing list