[Checkins] SVN: zope.location/trunk/ Add 'setup.py dev' alias.

Tres Seaver cvs-admin at zope.org
Thu Jun 7 01:31:40 UTC 2012


Log message for revision 126639:
  Add 'setup.py dev' alias.
  
  Runs 'setup.py develop' plus installs 'nose' and 'coverage'.
  

Changed:
  _U  zope.location/trunk/
  A   zope.location/trunk/.bzrignore
  U   zope.location/trunk/CHANGES.txt
  A   zope.location/trunk/setup.cfg
  U   zope.location/trunk/setup.py

-=-
Added: zope.location/trunk/.bzrignore
===================================================================
--- zope.location/trunk/.bzrignore	                        (rev 0)
+++ zope.location/trunk/.bzrignore	2012-06-07 01:31:37 UTC (rev 126639)
@@ -0,0 +1 @@
+*.egg-info

Modified: zope.location/trunk/CHANGES.txt
===================================================================
--- zope.location/trunk/CHANGES.txt	2012-06-07 01:13:46 UTC (rev 126638)
+++ zope.location/trunk/CHANGES.txt	2012-06-07 01:31:37 UTC (rev 126639)
@@ -5,6 +5,9 @@
 4.0.0 (unreleased)
 ------------------
 
+- Added 'setup.py dev' alias (runs ``setup.py develop`` plus installs
+  ``nose`` and ``coverage``).
+
 - Replaced deprecated ``zope.component.adapts`` usage with equivalent
   ``zope.component.adapter`` decorator.
 

Added: zope.location/trunk/setup.cfg
===================================================================
--- zope.location/trunk/setup.cfg	                        (rev 0)
+++ zope.location/trunk/setup.cfg	2012-06-07 01:31:37 UTC (rev 126639)
@@ -0,0 +1,10 @@
+[nosetests]
+nocapture=1
+cover-package=zope.location
+cover-erase=1
+with-doctest=0
+where=src
+
+[aliases]
+dev = develop easy_install zope.location[testing]
+

Modified: zope.location/trunk/setup.py
===================================================================
--- zope.location/trunk/setup.py	2012-06-07 01:13:46 UTC (rev 126638)
+++ zope.location/trunk/setup.py	2012-06-07 01:31:37 UTC (rev 126639)
@@ -67,7 +67,8 @@
                         ],
       extras_require={
         'zcml': ['zope.configuration'],
-        },
+        'testing': ['nose', 'coverage'],
+      },
       include_package_data = True,
       zip_safe = False,
-      )
+)



More information about the checkins mailing list