0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 01:57:32 +01:00
wagtail/setup.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

132 lines
4.0 KiB
Python
Raw Normal View History

2014-02-03 18:14:46 +01:00
#!/usr/bin/env python
from wagtail import __version__
2020-10-13 14:53:25 +02:00
from wagtail.utils.setup import assets, check_bdist_egg, sdist
2014-02-07 16:39:59 +01:00
try:
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
# 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)
try:
2020-10-02 17:56:26 +02:00
import multiprocessing # noqa
except ImportError:
pass
install_requires = [
2022-01-07 11:32:22 +01:00
"Django>=3.2,<4.1",
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",
"django-treebeard>=4.5.1,<5.0",
"djangorestframework>=3.11.1,<4.0",
"django-filter>=2.2,<22",
"draftjs_exporter>=2.1.5,<3.0",
"Pillow>=4.0.0,<10.0.0",
"beautifulsoup4>=4.8,<4.10",
2018-04-12 12:56:50 +02:00
"html5lib>=0.999,<2",
"Willow>=1.4,<1.5",
"requests>=2.11.1,<3.0",
"l18n>=2018.5",
"xlsxwriter>=1.2.8,<4.0",
"tablib[xls,xlsx]>=0.14.0",
"anyascii>=0.1.5",
"telepath>=0.1.1,<1",
]
# Testing dependencies
testing_extras = [
# Required for running the tests
"python-dateutil>=2.7",
"pytz>=2014.7",
2020-11-04 23:24:59 +01:00
"elasticsearch>=5.0,<6.0",
"Jinja2>=3.0,<4.0",
2020-11-02 18:29:58 +01:00
"boto3>=1.16,<1.17",
"freezegun>=0.3.8",
"openpyxl>=2.6.4",
"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",
# For coverage and PEP8 linting
"coverage>=3.7.0",
"black==22.1.0",
2018-10-25 16:32:39 +02:00
"flake8>=3.6.0",
"isort==5.6.4", # leave this pinned - it tends to change rules between patch releases
"flake8-blind-except==0.1.1",
2022-02-10 17:19:36 +01:00
"flake8-comprehensions==3.8.0",
"flake8-print==2.0.2",
2020-10-02 19:08:50 +02:00
"doc8==0.8.1",
"flake8-assertive==2.0.0",
# For templates linting
"jinjalint>=0.5",
# For template indenting
"djhtml==1.4.13",
# Pipenv hack to fix broken dependency causing CircleCI failures
"docutils==0.15",
# for validating string formats in .po translation files
"polib>=1.1,<2.0",
]
# Documentation dependencies
documentation_extras = [
2020-10-02 18:02:08 +02:00
"pyenchant>=3.1.1,<4",
"sphinxcontrib-spelling>=5.4.0,<6",
"Sphinx>=1.5.2",
"sphinx-autobuild>=0.6.0",
"sphinx-wagtail-theme==5.0.4",
"recommonmark>=0.7.1",
]
2014-02-03 18:14:46 +01:00
setup(
2014-02-03 18:26:22 +01:00
name="wagtail",
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",
author_email="hello@wagtail.org", # For support queries, please see https://docs.wagtail.org/en/stable/support.html
url="https://wagtail.org/",
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. \
Its focused on user experience, and offers precise control for \
designers and developers.\n\n\
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=[
"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",
"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",
"Programming Language :: Python :: 3.10",
2014-02-07 16:39:59 +01:00
"Framework :: Django",
"Framework :: Django :: 3.2",
2022-01-07 11:32:22 +01:00
"Framework :: Django :: 4.0",
"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",
install_requires=install_requires,
extras_require={"testing": testing_extras, "docs": documentation_extras},
entry_points="""
[console_scripts]
wagtail=wagtail.bin.wagtail:main
""",
zip_safe=False,
cmdclass={
"sdist": sdist,
"bdist_egg": check_bdist_egg,
"assets": assets,
},
2014-02-07 16:39:59 +01:00
)