2014-02-03 18:14:46 +01:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
2016-08-18 06:49:19 +02:00
|
|
|
|
from wagtail import __version__
|
2020-10-13 14:53:25 +02:00
|
|
|
|
from wagtail.utils.setup import assets, check_bdist_egg, sdist
|
2014-07-01 15:35:10 +02:00
|
|
|
|
|
2020-10-16 16:55:15 +02:00
|
|
|
|
|
2014-02-07 16:39:59 +01:00
|
|
|
|
try:
|
2020-10-16 16:55:15 +02:00
|
|
|
|
from setuptools import find_packages, setup
|
2014-02-07 16:39:59 +01:00
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
2014-02-03 18:14:46 +01:00
|
|
|
|
|
2014-02-07 19:12:06 +01:00
|
|
|
|
|
2014-09-10 18:37:57 +02:00
|
|
|
|
# Hack to prevent "TypeError: 'NoneType' object is not callable" error
|
|
|
|
|
# in multiprocessing/util.py _exit_function when setup.py exits
|
|
|
|
|
# (see http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
|
2014-02-07 19:12:06 +01:00
|
|
|
|
try:
|
2020-10-02 17:56:26 +02:00
|
|
|
|
import multiprocessing # noqa
|
2014-02-07 19:12:06 +01:00
|
|
|
|
except ImportError:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
2014-07-01 15:35:10 +02:00
|
|
|
|
install_requires = [
|
2022-01-06 12:38:52 +01:00
|
|
|
|
"Django>=3.2,<4.0",
|
2021-10-13 15:09:49 +02:00
|
|
|
|
"django-modelcluster>=5.2,<6.0",
|
2022-01-06 16:22:15 +01:00
|
|
|
|
"django-taggit>=2.0,<3.0",
|
2021-03-04 14:19:01 +01:00
|
|
|
|
"django-treebeard>=4.2.0,<5.0,!=4.5",
|
2020-08-06 02:40:14 +02:00
|
|
|
|
"djangorestframework>=3.11.1,<4.0",
|
2021-11-09 13:16:03 +01:00
|
|
|
|
"django-filter>=2.2,<22",
|
2018-11-20 17:14:36 +01:00
|
|
|
|
"draftjs_exporter>=2.1.5,<3.0",
|
2022-01-07 17:52:24 +01:00
|
|
|
|
"Pillow>=4.0.0,<10.0.0",
|
2021-03-04 21:15:56 +01:00
|
|
|
|
"beautifulsoup4>=4.8,<4.10",
|
2018-04-12 12:56:50 +02:00
|
|
|
|
"html5lib>=0.999,<2",
|
2020-06-09 10:29:48 +02:00
|
|
|
|
"Willow>=1.4,<1.5",
|
2016-11-08 20:23:35 +01:00
|
|
|
|
"requests>=2.11.1,<3.0",
|
2019-09-06 13:30:07 +02:00
|
|
|
|
"l18n>=2018.5",
|
2021-08-10 18:25:30 +02:00
|
|
|
|
"xlsxwriter>=1.2.8,<4.0",
|
2020-05-11 19:19:20 +02:00
|
|
|
|
"tablib[xls,xlsx]>=0.14.0",
|
2020-07-20 02:41:07 +02:00
|
|
|
|
"anyascii>=0.1.5",
|
2021-04-22 17:18:49 +02:00
|
|
|
|
"telepath>=0.1.1,<1",
|
2014-07-01 15:35:10 +02:00
|
|
|
|
]
|
|
|
|
|
|
2016-02-03 02:56:48 +01:00
|
|
|
|
# Testing dependencies
|
|
|
|
|
testing_extras = [
|
|
|
|
|
# Required for running the tests
|
2021-06-14 17:17:04 +02:00
|
|
|
|
'python-dateutil>=2.7',
|
2016-02-03 02:56:48 +01:00
|
|
|
|
'pytz>=2014.7',
|
2020-11-04 23:24:59 +01:00
|
|
|
|
'elasticsearch>=5.0,<6.0',
|
2020-08-12 05:18:04 +02:00
|
|
|
|
'Jinja2>=2.11,<3.0',
|
2020-11-02 18:29:58 +01:00
|
|
|
|
'boto3>=1.16,<1.17',
|
2017-05-06 05:22:38 +02:00
|
|
|
|
'freezegun>=0.3.8',
|
2020-03-11 11:53:06 +01:00
|
|
|
|
'openpyxl>=2.6.4',
|
2020-10-23 19:57:32 +02:00
|
|
|
|
'Unidecode>=0.04.14,<2.0',
|
2020-05-27 10:15:44 +02:00
|
|
|
|
'azure-mgmt-cdn>=5.1,<6.0',
|
|
|
|
|
'azure-mgmt-frontdoor>=0.3,<0.4',
|
2016-02-03 02:56:48 +01:00
|
|
|
|
|
|
|
|
|
# For coverage and PEP8 linting
|
|
|
|
|
'coverage>=3.7.0',
|
2018-10-25 16:32:39 +02:00
|
|
|
|
'flake8>=3.6.0',
|
2020-10-19 21:10:28 +02:00
|
|
|
|
'isort==5.6.4', # leave this pinned - it tends to change rules between patch releases
|
2017-03-01 13:21:34 +01:00
|
|
|
|
'flake8-blind-except==0.1.1',
|
|
|
|
|
'flake8-print==2.0.2',
|
2020-10-02 19:08:50 +02:00
|
|
|
|
'doc8==0.8.1',
|
2019-04-23 13:58:58 +02:00
|
|
|
|
|
|
|
|
|
# For templates linting
|
|
|
|
|
'jinjalint>=0.5',
|
2019-07-23 17:57:31 +02:00
|
|
|
|
|
|
|
|
|
# Pipenv hack to fix broken dependency causing CircleCI failures
|
|
|
|
|
'docutils==0.15',
|
2020-05-26 11:39:40 +02:00
|
|
|
|
|
2021-10-14 16:05:36 +02:00
|
|
|
|
# for validating string formats in .po translation files
|
|
|
|
|
'polib>=1.1,<2.0',
|
2016-02-03 02:56:48 +01:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
# Documentation dependencies
|
|
|
|
|
documentation_extras = [
|
2020-10-02 18:02:08 +02:00
|
|
|
|
'pyenchant>=3.1.1,<4',
|
|
|
|
|
'sphinxcontrib-spelling>=5.4.0,<6',
|
2017-02-21 14:46:21 +01:00
|
|
|
|
'Sphinx>=1.5.2',
|
|
|
|
|
'sphinx-autobuild>=0.6.0',
|
2021-06-30 11:18:07 +02:00
|
|
|
|
'sphinx-wagtail-theme==5.0.4',
|
2021-01-26 23:09:52 +01:00
|
|
|
|
'recommonmark>=0.7.1',
|
2016-02-03 02:56:48 +01:00
|
|
|
|
]
|
2014-07-01 15:35:10 +02:00
|
|
|
|
|
2014-02-03 18:14:46 +01:00
|
|
|
|
setup(
|
2014-02-03 18:26:22 +01:00
|
|
|
|
name='wagtail',
|
2014-09-09 13:57:01 +02:00
|
|
|
|
version=__version__,
|
2018-03-14 14:59:02 +01:00
|
|
|
|
description='A Django content management system.',
|
2018-05-14 15:38:27 +02:00
|
|
|
|
author='Wagtail core team + contributors',
|
2022-01-11 16:36:14 +01:00
|
|
|
|
author_email='hello@wagtail.io', # For support queries, please see https://docs.wagtail.org/en/stable/support.html
|
2019-11-08 10:15:01 +01:00
|
|
|
|
url='https://wagtail.io/',
|
2014-02-07 19:12:06 +01:00
|
|
|
|
packages=find_packages(),
|
|
|
|
|
include_package_data=True,
|
2014-02-07 16:39:59 +01:00
|
|
|
|
license='BSD',
|
2018-03-14 14:59:02 +01:00
|
|
|
|
long_description="Wagtail is an open source content management \
|
|
|
|
|
system built on Django, with a strong community and commercial support. \
|
|
|
|
|
It’s focused on user experience, and offers precise control for \
|
|
|
|
|
designers and developers.\n\n\
|
2022-01-11 16:36:14 +01:00
|
|
|
|
For more details, see https://wagtail.io, https://docs.wagtail.org and \
|
2018-03-14 14:59:02 +01:00
|
|
|
|
https://github.com/wagtail/wagtail/.",
|
2014-02-07 16:39:59 +01:00
|
|
|
|
classifiers=[
|
2014-09-22 22:11:22 +02:00
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
2014-02-07 16:39:59 +01:00
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
|
'Programming Language :: Python',
|
2014-07-03 14:06:23 +02:00
|
|
|
|
'Programming Language :: Python :: 3',
|
2018-10-17 18:30:34 +02:00
|
|
|
|
'Programming Language :: Python :: 3.7',
|
2019-10-15 17:30:58 +02:00
|
|
|
|
'Programming Language :: Python :: 3.8',
|
2020-11-02 18:29:58 +01:00
|
|
|
|
'Programming Language :: Python :: 3.9',
|
2021-10-06 12:42:56 +02:00
|
|
|
|
'Programming Language :: Python :: 3.10',
|
2014-02-07 16:39:59 +01:00
|
|
|
|
'Framework :: Django',
|
2021-04-08 17:56:51 +02:00
|
|
|
|
'Framework :: Django :: 3.2',
|
2018-06-16 22:03:39 +02:00
|
|
|
|
'Framework :: Wagtail',
|
2014-02-07 16:39:59 +01:00
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Site Management',
|
|
|
|
|
],
|
2021-11-17 21:19:30 +01:00
|
|
|
|
python_requires='>=3.7',
|
2014-07-01 15:35:10 +02:00
|
|
|
|
install_requires=install_requires,
|
2016-02-03 02:56:48 +01:00
|
|
|
|
extras_require={
|
|
|
|
|
'testing': testing_extras,
|
|
|
|
|
'docs': documentation_extras
|
|
|
|
|
},
|
2014-06-19 13:16:22 +02:00
|
|
|
|
entry_points="""
|
|
|
|
|
[console_scripts]
|
2014-07-31 11:31:00 +02:00
|
|
|
|
wagtail=wagtail.bin.wagtail:main
|
2014-06-19 13:16:22 +02:00
|
|
|
|
""",
|
2014-02-07 19:12:06 +01:00
|
|
|
|
zip_safe=False,
|
2015-04-23 03:11:49 +02:00
|
|
|
|
cmdclass={
|
2015-10-05 12:51:04 +02:00
|
|
|
|
'sdist': sdist,
|
2015-04-24 01:34:16 +02:00
|
|
|
|
'bdist_egg': check_bdist_egg,
|
2015-04-23 03:11:49 +02:00
|
|
|
|
'assets': assets,
|
|
|
|
|
},
|
2014-02-07 16:39:59 +01:00
|
|
|
|
)
|