diff options
| author | bwarsaw | 2000-12-07 19:52:43 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-12-07 19:52:43 +0000 |
| commit | f4d3c6c8f9525b9d454de03e9975e1ddf81d20c0 (patch) | |
| tree | 45746e31ee33c102c618b60fddf2651e24c91831 /src/setup.py | |
| parent | 92aaeda59e2dac7e02502946a766ed4b4e796d0b (diff) | |
| download | mailman-f4d3c6c8f9525b9d454de03e9975e1ddf81d20c0.tar.gz mailman-f4d3c6c8f9525b9d454de03e9975e1ddf81d20c0.tar.zst mailman-f4d3c6c8f9525b9d454de03e9975e1ddf81d20c0.zip | |
Diffstat (limited to 'src/setup.py')
| -rwxr-xr-x | src/setup.py | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/setup.py b/src/setup.py new file mode 100755 index 000000000..44bdffeb4 --- /dev/null +++ b/src/setup.py @@ -0,0 +1,31 @@ +#! /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'])] + ) |
