1 # Copyright (C) 2007-2014 by the Free Software Foundation, Inc.
3 # This file is part of GNU Mailman.
5 # GNU Mailman is free software: you can redistribute it and/or modify it under
6 # the terms of the GNU General Public License as published by the Free
7 # Software Foundation, either version 3 of the License, or (at your option)
10 # GNU Mailman is distributed in the hope that it will be useful, but WITHOUT
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
15 # You should have received a copy of the GNU General Public License along with
16 # GNU Mailman. If not, see <http://www.gnu.org/licenses/>.
18 # Do *not* import unicode_literals. This breaks setuptools.
19 from __future__
import absolute_import
, print_function
24 from setuptools
import setup
, find_packages
25 from string
import Template
27 if sys
.hexversion
< 0x20700f0:
28 print('Mailman requires at least Python 2.7')
32 # Calculate the version number without importing the mailman package.
33 with
open('src/mailman/version.py') as fp
:
35 mo
= re
.match("VERSION = '(?P<version>[^']+?)'", line
)
37 __version__
= mo
.group('version')
40 print('No version number found')
45 # Ensure that all the .mo files are generated from the corresponding .po file.
46 # This procedure needs to be made sane, probably when the language packs are
49 # Create the .mo files from the .po files. There may be errors and warnings
50 # here and that could cause the digester.txt test to fail.
51 ## start_dir = os.path.dirname('src/mailman/messages')
52 ## for dirpath, dirnames, filenames in os.walk(start_dir):
53 ## for filename in filenames:
54 ## po_file = os.path.join(dirpath, filename)
55 ## basename, ext = os.path.splitext(po_file)
58 ## mo_file = basename + '.mo'
59 ## if (not os.path.exists(mo_file) or
60 ## os.path.getmtime(po_file) > os.path.getmtime(mo_file)):
61 ## # The mo file doesn't exist or is older than the po file.
62 ## os.system('msgfmt -o %s %s' % (mo_file, po_file))
66 # XXX The 'bin/' prefix here should be configurable.
67 template
= Template('$script = mailman.bin.$script:main')
69 template
.substitute(script
=script
)
70 for script
in ('mailman', 'runner', 'master', 'onebounce')
77 version
= __version__
,
78 description
= 'Mailman -- the GNU mailing list manager',
79 long_description
= """\
80 This is GNU Mailman, a mailing list management system distributed under the
81 terms of the GNU General Public License (GPL) version 3 or later. The name of
82 this software is spelled 'Mailman' with a leading capital 'M' but with a lower
83 case second `m'. Any other spelling is incorrect.""",
84 author
= 'The Mailman Developers',
85 author_email
= 'mailman-developers@python.org',
87 url
= 'http://www.list.org',
89 packages
= find_packages('src'),
90 package_dir
= {'': 'src'},
91 include_package_data
= True,
93 'console_scripts' : list(scripts
),
110 'zope.configuration',
114 test_suite
= 'nose2.collector.collector',