~sambuddhabasu1/mailman/fix_mailman_run_error

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Barry Warsaw
  • Date: 2009-11-24 03:20:48 UTC
  • Revision ID: barry@python.org-20091124032048-wi6uoch11nlyksb7
* Switch to distribute from setuptools.
* Remove the dependency on setuptools_bzr and use a MANIFEST.in instead

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# You should have received a copy of the GNU General Public License along with
16
16
# GNU Mailman.  If not, see <http://www.gnu.org/licenses/>.
17
17
 
18
 
import ez_setup
19
 
ez_setup.use_setuptools()
 
18
from distribute_setup import use_setuptools
 
19
use_setuptools()
20
20
 
21
21
import os
22
22
import re
107
107
        'zope.interface',
108
108
        'zope.schema',
109
109
        ],
110
 
    setup_requires = [
111
 
        'setuptools_bzr',
112
 
        ],
113
110
    extras_require=dict(
114
111
        docs=['Sphinx', 'z3c.recipe.sphinxdoc'],
115
112
        )