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
|
|
|
|
|
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:
|
2023-06-12 19:30:18 +02:00
|
|
|
|
import multiprocessing # noqa: F401
|
2014-02-07 19:12:06 +01:00
|
|
|
|
except ImportError:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
2014-07-01 15:35:10 +02:00
|
|
|
|
install_requires = [
|
2023-12-07 12:10:14 +01:00
|
|
|
|
"Django>=4.2,<6.0",
|
2024-01-04 16:25:02 +01:00
|
|
|
|
"django-modelcluster>=6.2.1,<7.0",
|
2022-03-01 14:50:23 +01:00
|
|
|
|
"django-permissionedforms>=0.1,<1.0",
|
2024-09-30 18:05:50 +02:00
|
|
|
|
"django-taggit>=5.0,<6.2",
|
2022-02-15 07:52:42 +01:00
|
|
|
|
"django-treebeard>=4.5.1,<5.0",
|
2024-03-26 15:49:27 +01:00
|
|
|
|
"djangorestframework>=3.15.1,<4.0",
|
2024-04-10 09:46:26 +02:00
|
|
|
|
"django-filter>=23.3,<25",
|
2023-11-08 08:48:36 +01:00
|
|
|
|
"draftjs_exporter>=2.1.5,<6.0",
|
2024-10-27 14:03:30 +01:00
|
|
|
|
"Pillow>=9.1.0,<12.0.0",
|
2023-10-19 18:09:55 +02:00
|
|
|
|
"beautifulsoup4>=4.8,<4.13",
|
2024-02-01 16:45:09 +01:00
|
|
|
|
"Willow[heif]>=1.8.0,<2",
|
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",
|
2022-07-06 15:53:42 +02:00
|
|
|
|
"openpyxl>=3.0.10,<4.0",
|
2020-07-20 02:41:07 +02:00
|
|
|
|
"anyascii>=0.1.5",
|
2023-12-12 20:59:41 +01:00
|
|
|
|
"telepath>=0.3.1,<1",
|
2023-11-29 23:45:27 +01:00
|
|
|
|
"laces>=0.1,<0.2",
|
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",
|
2022-03-25 05:24:06 +01:00
|
|
|
|
"Jinja2>=3.0,<3.2",
|
2023-10-04 13:39:09 +02:00
|
|
|
|
"boto3>=1.28,<2",
|
2017-05-06 05:22:38 +02:00
|
|
|
|
"freezegun>=0.3.8",
|
2022-12-26 15:50:16 +01:00
|
|
|
|
"azure-mgmt-cdn>=12.0,<13.0",
|
|
|
|
|
"azure-mgmt-frontdoor>=1.0,<1.1",
|
2023-11-06 11:30:44 +01:00
|
|
|
|
"django-pattern-library>=0.7",
|
2016-02-03 02:56:48 +01:00
|
|
|
|
# For coverage and PEP8 linting
|
|
|
|
|
"coverage>=3.7.0",
|
2020-10-02 19:08:50 +02:00
|
|
|
|
"doc8==0.8.1",
|
2023-11-17 00:42:29 +01:00
|
|
|
|
"ruff==0.1.5",
|
2023-01-23 11:55:29 +01:00
|
|
|
|
# For enforcing string formatting mechanism in source files
|
2023-09-21 00:56:27 +02:00
|
|
|
|
"semgrep==1.40.0",
|
2019-04-23 13:58:58 +02:00
|
|
|
|
# For templates linting
|
2022-03-30 13:27:48 +02:00
|
|
|
|
"curlylint==0.13.1",
|
2022-02-12 02:04:21 +01:00
|
|
|
|
# For template indenting
|
2023-10-30 16:49:41 +01:00
|
|
|
|
"djhtml==3.0.6",
|
2023-07-21 11:41:06 +02:00
|
|
|
|
# For validating string formats in .po translation files
|
2021-10-14 16:05:36 +02:00
|
|
|
|
"polib>=1.1,<2.0",
|
2023-03-30 14:43:18 +02:00
|
|
|
|
# For wagtail.test.utils.wagtail_factories (used for streamfield migration toolkit)
|
|
|
|
|
"factory-boy>=3.2",
|
2023-07-21 11:41:06 +02:00
|
|
|
|
# For running tests in parallel
|
|
|
|
|
"tblib>=2.0,<3.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",
|
2024-01-02 14:48:04 +01:00
|
|
|
|
"sphinxcontrib-spelling>=7,<8",
|
2024-07-22 17:21:26 +02:00
|
|
|
|
"Sphinx>=7.3",
|
2017-02-21 14:46:21 +01:00
|
|
|
|
"sphinx-autobuild>=0.6.0",
|
2024-11-01 10:35:43 +01:00
|
|
|
|
"sphinx-wagtail-theme==6.4.0",
|
2023-11-07 05:10:47 +01:00
|
|
|
|
"myst_parser==2.0.0",
|
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:28:35 +01:00
|
|
|
|
author_email="hello@wagtail.org", # For support queries, please see https://docs.wagtail.org/en/stable/support.html
|
2022-01-11 17:11:10 +01:00
|
|
|
|
url="https://wagtail.org/",
|
2022-03-04 17:12:54 +01:00
|
|
|
|
project_urls={
|
2023-10-06 11:00:27 +02:00
|
|
|
|
"Changelog": "https://github.com/wagtail/wagtail/blob/main/CHANGELOG.txt",
|
2022-03-04 17:12:54 +01:00
|
|
|
|
"Documentation": "https://docs.wagtail.org",
|
|
|
|
|
"Source": "https://github.com/wagtail/wagtail",
|
2023-10-06 11:02:52 +02:00
|
|
|
|
"Tracker": "https://github.com/wagtail/wagtail/issues",
|
2022-03-04 17:12:54 +01:00
|
|
|
|
},
|
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-02-02 11:39:14 +01:00
|
|
|
|
For more details, see https://wagtail.org, 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",
|
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",
|
2022-10-25 13:57:15 +02:00
|
|
|
|
"Programming Language :: Python :: 3.11",
|
2023-11-30 11:57:53 +01:00
|
|
|
|
"Programming Language :: Python :: 3.12",
|
2024-10-10 21:19:28 +02:00
|
|
|
|
"Programming Language :: Python :: 3.13",
|
2014-02-07 16:39:59 +01:00
|
|
|
|
"Framework :: Django",
|
2023-04-03 16:09:22 +02:00
|
|
|
|
"Framework :: Django :: 4.2",
|
2023-11-30 11:57:53 +01:00
|
|
|
|
"Framework :: Django :: 5.0",
|
2024-08-07 17:06:39 +02:00
|
|
|
|
"Framework :: Django :: 5.1",
|
2018-06-16 22:03:39 +02:00
|
|
|
|
"Framework :: Wagtail",
|
2014-02-07 16:39:59 +01:00
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: Site Management",
|
|
|
|
|
],
|
2024-07-22 15:58:47 +02:00
|
|
|
|
python_requires=">=3.9",
|
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
|
|
|
|
)
|