1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
# Copyright (C) 2007-2023 by the Free Software Foundation, Inc.
#
# This file is part of GNU Mailman.
#
# GNU Mailman 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 3 of the License, or (at your option)
# any later version.
#
# GNU Mailman 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
# GNU Mailman. If not, see <https://www.gnu.org/licenses/>.
import re
import sys
from setuptools import find_packages, setup
from string import Template
if sys.hexversion < 0x30600f0:
print('Mailman requires at least Python 3.6')
sys.exit(1)
# Calculate the version number without importing the mailman package.
with open('src/mailman/version.py') as fp:
for line in fp:
mo = re.match("VERSION = '(?P<version>[^']+?)'", line)
if mo:
__version__ = mo.group('version')
break
else:
print('No version number found')
sys.exit(1)
# Ensure that all the .mo files are generated from the corresponding .po file.
# This procedure needs to be made sane, probably when the language packs are
# properly split out.
# Create the .mo files from the .po files. There may be errors and warnings
# here and that could cause the digester.txt test to fail.
## start_dir = os.path.dirname('src/mailman/messages')
## for dirpath, dirnames, filenames in os.walk(start_dir):
## for filename in filenames:
## po_file = os.path.join(dirpath, filename)
## basename, ext = os.path.splitext(po_file)
## if ext <> '.po':
## continue
## mo_file = basename + '.mo'
## if (not os.path.exists(mo_file) or
## os.path.getmtime(po_file) > os.path.getmtime(mo_file)):
## # The mo file doesn't exist or is older than the po file.
## os.system('msgfmt -o %s %s' % (mo_file, po_file))
# XXX The 'bin/' prefix here should be configurable.
template = Template('$script = mailman.bin.$script:main')
scripts = set(
template.substitute(script=script)
for script in ('mailman', 'runner', 'master')
)
setup(
name = 'mailman',
version = __version__,
description = 'Mailman -- the GNU mailing list manager',
long_description= """\
This is GNU Mailman, a mailing list management system distributed under the
terms of the GNU General Public License (GPL) version 3 or later. The name of
this software is spelled 'Mailman' with a leading capital 'M' but with a lower
case second 'm'. Any other spelling is incorrect.""",
author = 'The Mailman Developers',
author_email = 'mailman-developers@python.org',
license = 'GPLv3',
url = 'https://www.list.org',
project_urls={
'Documentation': 'https://docs.mailman3.org/projects/mailman/en/latest/README.html',
'Source': 'https://gitlab.com/mailman/mailman.git',
'Tracker': 'https://gitlab.com/mailman/mailman/-/issues',
},
keywords = 'email',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Communications :: Email :: Mailing List Servers',
'Topic :: Communications :: Usenet News',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
],
packages = find_packages('src'),
package_dir = {'': 'src'},
include_package_data = True,
entry_points = {
'console_scripts' : list(scripts),
},
install_requires = [
'aiosmtpd>=1.4.3',
'alembic>=1.6.2,!=1.7.0',
'atpublic',
'authheaders>=0.14.0',
'authres>=1.0.1',
'click>=8.0.0',
'dnspython>=1.14.0',
'falcon>=3.0.0',
'flufl.bounce>=4.0',
'flufl.i18n>=3.2',
'flufl.lock>=5.1',
'importlib_resources>=1.1.0',
'gunicorn',
'lazr.config',
'python-dateutil>=2.0',
'passlib',
'requests',
'sqlalchemy>=1.4.0',
'zope.component',
'zope.configuration',
'zope.event',
'zope.interface>=5.0',
],
)
# flake8: noqa
|