| Issue 80: | Proposed patch to setup.py to allow building eggs. | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Use setuptools if available on the system (allows building eggs which our group uses to deploy modules with c extensions). setup.py 4c4,7 < from distutils.core import setup, Command --- > try: > from setuptools.core import setup, Command > except ImportError: > from distutils.core import setup, Command
Dec 31, 2009
Project Member
#1
mkleehammer
Status:
Verified
Nov 21, 2010
(No comment was entered for this change.)
Status:
Complete
|