← Back to team overview

lazr-developers team mailing list archive

Re: [Merge] lp:~gary/lazr.yourpkg/trunk into lp:lazr.yourpkg

 

I have added another small change to this branch, while waiting for resolution on the previous messages: setup.py now includes the ``use_setuptools`` dance, since we do, and this appears to be a best practice.

The incremental diff adds ez_setup.py to the top-level directory, and makes this change to setup.py:

=== modified file 'setup.py'
--- setup.py	2009-03-13 21:51:39 +0000
+++ setup.py	2009-03-16 15:16:26 +0000
@@ -15,6 +15,9 @@
 # You should have received a copy of the GNU Lesser General Public License
 # along with lazr.yourpkg.  If not, see <http://www.gnu.org/licenses/>.
 
+import ez_setup
+ez_setup.use_setuptools()
+
 import sys
 from setuptools import setup, find_packages



You can see the full diff (which is only different from the above in that it includes ez_setup.py's content) here:
https://pastebin.canonical.com/15008/

Gary

-- 
https://code.edge.launchpad.net/~gary/lazr.yourpkg/trunk/+merge/4477
Your team LAZR Developers is subscribed to branch lp:lazr.yourpkg.



Follow ups

References