1 # Copyright (C) 2012-2023 by the Free Software Foundation, Inc.
3 # This file is part of Postorius.
5 # Postorius is free software: you can redistribute it and/or modify it
6 # under the terms of the GNU Lesser General Public License as published by the
7 # Free Software Foundation, either version 3 of the License, or (at your
8 # option) any later version.
10 # Postorius 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 Lesser General Public License
15 # You should have received a copy of the GNU Lesser General Public License
16 # along with Postorius. If not, see <http://www.gnu.org/licenses/>.
21 from setuptools
import find_packages
, setup
24 # Calculate the version number without importing the postorius package.
25 with
open('src/postorius/__init__.py') as fp
:
27 mo
= re
.match("__version__ = '(?P<version>[^']+?)'", line
)
29 __version__
= mo
.group('version')
32 print('No version number found')
39 description
='A web user interface for GNU Mailman',
40 long_description
=open('README.rst').read(),
41 maintainer
='The Mailman GSOC Coders',
43 keywords
='email mailman django',
44 url
=' https://gitlab.com/mailman/postorius',
46 'Framework :: Django',
47 'Development Status :: 4 - Beta',
48 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
49 'Topic :: Communications :: Email :: Mailing List Servers',
50 'Programming Language :: Python :: 3',
52 packages
=find_packages('src'),
53 package_dir
={'': 'src'},
54 include_package_data
=True,
56 'django-mailman3>=1.3.8',
58 'mailmanclient>=3.3.3',
59 'readme_renderer[md]',
64 'django-debug-toolbar',
65 'django-requests-debug-toolbar',