summaryrefslogtreecommitdiff
path: root/src/setup.py
diff options
context:
space:
mode:
authorbwarsaw2002-03-16 02:11:25 +0000
committerbwarsaw2002-03-16 02:11:25 +0000
commitf868997d96967835ed401b5e9a64e57ddc0f8363 (patch)
tree80e1b909d8554a99281c3cf080a1c7adb5b6e6a3 /src/setup.py
parent4d6f0e8f20cf08f559385c19fe0962529a62ef28 (diff)
downloadmailman-f868997d96967835ed401b5e9a64e57ddc0f8363.tar.gz
mailman-f868997d96967835ed401b5e9a64e57ddc0f8363.tar.zst
mailman-f868997d96967835ed401b5e9a64e57ddc0f8363.zip
Obsolete.
Diffstat (limited to 'src/setup.py')
-rwxr-xr-xsrc/setup.py31
1 files changed, 0 insertions, 31 deletions
diff --git a/src/setup.py b/src/setup.py
deleted file mode 100755
index 44bdffeb4..000000000
--- a/src/setup.py
+++ /dev/null
@@ -1,31 +0,0 @@
-#! /usr/bin/env python
-#
-# Copyright (C) 2000 by the Free Software Foundation, Inc.
-#
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; either version 2
-# of the License, or (at your option) any later version.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
-
-"""Distutils setup for optional performance enhancing extension.
-"""
-
-from distutils.core import setup, Extension
-
-
-setup(name='_mailman',
- maintainer='Barry Warsaw',
- maintainer_email='mailman-developers@python.org',
- url='http://www.gnu.org/software/mailman/mailman.html',
- version='1.0',
- ext_modules=[Extension('_mailman', ['_mailman.c'])]
- )