1 # Copyright (C) 2007-2017 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/>.
21 from setuptools
import setup
, find_packages
22 from string
import Template
25 if sys
.hexversion
< 0x30400f0:
26 print('Mailman requires at least Python 3.4')
30 # Calculate the version number without importing the mailman package.
31 with
open('src/mailman/version.py') as fp
:
33 mo
= re
.match("VERSION = '(?P<version>[^']+?)'", line
)
35 __version__
= mo
.group('version')
38 print('No version number found')
43 # Ensure that all the .mo files are generated from the corresponding .po file.
44 # This procedure needs to be made sane, probably when the language packs are
47 # Create the .mo files from the .po files. There may be errors and warnings
48 # here and that could cause the digester.txt test to fail.
49 ## start_dir = os.path.dirname('src/mailman/messages')
50 ## for dirpath, dirnames, filenames in os.walk(start_dir):
51 ## for filename in filenames:
52 ## po_file = os.path.join(dirpath, filename)
53 ## basename, ext = os.path.splitext(po_file)
56 ## mo_file = basename + '.mo'
57 ## if (not os.path.exists(mo_file) or
58 ## os.path.getmtime(po_file) > os.path.getmtime(mo_file)):
59 ## # The mo file doesn't exist or is older than the po file.
60 ## os.system('msgfmt -o %s %s' % (mo_file, po_file))
64 # XXX The 'bin/' prefix here should be configurable.
65 template
= Template('$script = mailman.bin.$script:main')
67 template
.substitute(script
=script
)
68 for script
in ('mailman', 'runner', 'master')
75 version
= __version__
,
76 description
= 'Mailman -- the GNU mailing list manager',
77 long_description
= """\
78 This is GNU Mailman, a mailing list management system distributed under the
79 terms of the GNU General Public License (GPL) version 3 or later. The name of
80 this software is spelled 'Mailman' with a leading capital 'M' but with a lower
81 case second `m'. Any other spelling is incorrect.""",
82 author
= 'The Mailman Developers',
83 author_email
= 'mailman-developers@python.org',
85 url
= 'http://www.list.org',
88 'Development Status :: 5 - Production/Stable',
89 'Intended Audience :: System Administrators',
90 'License :: OSI Approved :: '
91 'GNU General Public License v3 or later (GPLv3+)',
92 'Operating System :: POSIX',
93 'Programming Language :: Python :: 3.4',
94 'Programming Language :: Python :: 3.5',
95 'Topic :: Communications :: Email :: Mailing List Servers',
96 'Topic :: Communications :: Usenet News',
97 'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
99 packages
= find_packages('src'),
100 package_dir
= {'': 'src'},
101 include_package_data
= True,
103 'console_scripts' : list(scripts
),
120 'zope.configuration',