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:
|
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-07 11:32:22 +01:00
|
|
|
|
"Django>=3.2,<4.1",
|
2022-03-11 15:05:16 +01:00
|
|
|
|
"django-modelcluster>=6.0,<7.0",
|
2022-03-01 14:50:23 +01:00
|
|
|
|
"django-permissionedforms>=0.1,<1.0",
|
2022-01-06 16:22:15 +01:00
|
|
|
|
"django-taggit>=2.0,<3.0",
|
2022-02-15 07:52:42 +01:00
|
|
|
|
"django-treebeard>=4.5.1,<5.0",
|
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",
|
2022-03-25 05:24:06 +01:00
|
|
|
|
"Jinja2>=3.0,<3.2",
|
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-05-27 10:15:44 +02:00
|
|
|
|
"azure-mgmt-cdn>=5.1,<6.0",
|
|
|
|
|
"azure-mgmt-frontdoor>=0.3,<0.4",
|
2022-02-18 16:34:33 +01:00
|
|
|
|
"django-pattern-library>=0.7,<0.8",
|
2016-02-03 02:56:48 +01:00
|
|
|
|
# For coverage and PEP8 linting
|
|
|
|
|
"coverage>=3.7.0",
|
2022-03-29 18:44:14 +02:00
|
|
|
|
"black==22.3.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",
|
2022-02-10 17:19:36 +01:00
|
|
|
|
"flake8-comprehensions==3.8.0",
|
2017-03-01 13:21:34 +01:00
|
|
|
|
"flake8-print==2.0.2",
|
2020-10-02 19:08:50 +02:00
|
|
|
|
"doc8==0.8.1",
|
2022-02-09 23:49:47 +01:00
|
|
|
|
"flake8-assertive==2.0.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
|
|
|
|
|
"djhtml==1.4.13",
|
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",
|
2022-04-07 23:43:15 +02:00
|
|
|
|
"sphinx-wagtail-theme==5.1.1",
|
2022-03-09 12:48:19 +01:00
|
|
|
|
"myst_parser==0.17.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={
|
|
|
|
|
"Documentation": "https://docs.wagtail.org",
|
|
|
|
|
"Source": "https://github.com/wagtail/wagtail",
|
|
|
|
|
},
|
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",
|
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",
|
2022-01-07 11:32:22 +01:00
|
|
|
|
"Framework :: Django :: 4.0",
|
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
|
|
|
|
)
|