2014-02-03 17:14:46 +00:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
2016-08-18 04:49:19 +00:00
|
|
|
|
from wagtail import __version__
|
2020-10-13 12:53:25 +00:00
|
|
|
|
from wagtail.utils.setup import assets, check_bdist_egg, sdist
|
2014-07-01 13:35:10 +00:00
|
|
|
|
|
2020-10-16 14:55:15 +00:00
|
|
|
|
|
2014-02-07 15:39:59 +00:00
|
|
|
|
try:
|
2020-10-16 14:55:15 +00:00
|
|
|
|
from setuptools import find_packages, setup
|
2014-02-07 15:39:59 +00:00
|
|
|
|
except ImportError:
|
|
|
|
|
from distutils.core import setup
|
2014-02-03 17:14:46 +00:00
|
|
|
|
|
2014-02-07 18:12:06 +00:00
|
|
|
|
|
2014-09-10 16:37:57 +00: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 18:12:06 +00:00
|
|
|
|
try:
|
2020-10-02 15:56:26 +00:00
|
|
|
|
import multiprocessing # noqa
|
2014-02-07 18:12:06 +00:00
|
|
|
|
except ImportError:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
2014-07-01 13:35:10 +00:00
|
|
|
|
install_requires = [
|
2020-08-06 00:40:14 +00:00
|
|
|
|
"Django>=2.2,<3.2",
|
2020-09-14 19:50:44 +00:00
|
|
|
|
"django-modelcluster>=5.1,<6.0",
|
2019-08-06 19:28:12 +00:00
|
|
|
|
"django-taggit>=1.0,<2.0",
|
2017-12-13 16:07:50 +00:00
|
|
|
|
"django-treebeard>=4.2.0,<5.0",
|
2020-08-06 00:40:14 +00:00
|
|
|
|
"djangorestframework>=3.11.1,<4.0",
|
2020-03-12 11:36:45 +00:00
|
|
|
|
"django-filter>=2.2,<3.0",
|
2018-11-20 16:14:36 +00:00
|
|
|
|
"draftjs_exporter>=2.1.5,<3.0",
|
2020-10-21 12:01:01 +00:00
|
|
|
|
"Pillow>=4.0.0,<9.0.0",
|
2020-02-11 11:02:08 +00:00
|
|
|
|
"beautifulsoup4>=4.8,<4.9",
|
2018-04-12 10:56:50 +00:00
|
|
|
|
"html5lib>=0.999,<2",
|
2020-06-09 08:29:48 +00:00
|
|
|
|
"Willow>=1.4,<1.5",
|
2016-11-08 19:23:35 +00:00
|
|
|
|
"requests>=2.11.1,<3.0",
|
2019-09-06 11:30:07 +00:00
|
|
|
|
"l18n>=2018.5",
|
2020-03-10 17:03:00 +00:00
|
|
|
|
"xlsxwriter>=1.2.8,<2.0",
|
2020-05-11 17:19:20 +00:00
|
|
|
|
"tablib[xls,xlsx]>=0.14.0",
|
2020-07-20 00:41:07 +00:00
|
|
|
|
"anyascii>=0.1.5",
|
2014-07-01 13:35:10 +00:00
|
|
|
|
]
|
|
|
|
|
|
2016-02-03 01:56:48 +00:00
|
|
|
|
# Testing dependencies
|
|
|
|
|
testing_extras = [
|
|
|
|
|
# Required for running the tests
|
|
|
|
|
'python-dateutil>=2.2',
|
|
|
|
|
'pytz>=2014.7',
|
2016-10-20 09:51:29 +00:00
|
|
|
|
'elasticsearch>=1.0.0,<3.0',
|
2016-05-17 16:34:15 +00:00
|
|
|
|
'Jinja2>=2.8,<3.0',
|
2020-11-02 17:29:58 +00:00
|
|
|
|
'boto3>=1.16,<1.17',
|
2017-05-06 03:22:38 +00:00
|
|
|
|
'freezegun>=0.3.8',
|
2020-03-11 10:53:06 +00:00
|
|
|
|
'openpyxl>=2.6.4',
|
2020-10-23 17:57:32 +00:00
|
|
|
|
'Unidecode>=0.04.14,<2.0',
|
2016-02-03 01:56:48 +00:00
|
|
|
|
|
|
|
|
|
# For coverage and PEP8 linting
|
|
|
|
|
'coverage>=3.7.0',
|
2018-10-25 14:32:39 +00:00
|
|
|
|
'flake8>=3.6.0',
|
2020-10-19 19:10:28 +00:00
|
|
|
|
'isort==5.6.4', # leave this pinned - it tends to change rules between patch releases
|
2017-03-01 12:21:34 +00:00
|
|
|
|
'flake8-blind-except==0.1.1',
|
|
|
|
|
'flake8-print==2.0.2',
|
2020-10-02 17:08:50 +00:00
|
|
|
|
'doc8==0.8.1',
|
2019-04-23 11:58:58 +00:00
|
|
|
|
|
|
|
|
|
# For templates linting
|
|
|
|
|
'jinjalint>=0.5',
|
2019-07-23 15:57:31 +00:00
|
|
|
|
|
|
|
|
|
# Pipenv hack to fix broken dependency causing CircleCI failures
|
|
|
|
|
'docutils==0.15',
|
2020-05-26 09:39:40 +00:00
|
|
|
|
|
|
|
|
|
# django-taggit 1.3.0 made changes to verbose_name which affect migrations;
|
|
|
|
|
# the test suite migrations correspond to >=1.3.0
|
|
|
|
|
'django-taggit>=1.3.0,<2.0',
|
2016-02-03 01:56:48 +00:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
# Documentation dependencies
|
|
|
|
|
documentation_extras = [
|
2020-10-02 16:02:08 +00:00
|
|
|
|
'pyenchant>=3.1.1,<4',
|
|
|
|
|
'sphinxcontrib-spelling>=5.4.0,<6',
|
2017-02-21 13:46:21 +00:00
|
|
|
|
'Sphinx>=1.5.2',
|
|
|
|
|
'sphinx-autobuild>=0.6.0',
|
|
|
|
|
'sphinx_rtd_theme>=0.1.9',
|
2016-02-03 01:56:48 +00:00
|
|
|
|
]
|
2014-07-01 13:35:10 +00:00
|
|
|
|
|
2014-02-03 17:14:46 +00:00
|
|
|
|
setup(
|
2014-02-03 17:26:22 +00:00
|
|
|
|
name='wagtail',
|
2014-09-09 11:57:01 +00:00
|
|
|
|
version=__version__,
|
2018-03-14 13:59:02 +00:00
|
|
|
|
description='A Django content management system.',
|
2018-05-14 13:38:27 +00:00
|
|
|
|
author='Wagtail core team + contributors',
|
2019-11-08 09:15:01 +00:00
|
|
|
|
author_email='hello@wagtail.io', # For support queries, please see https://docs.wagtail.io/en/stable/support.html
|
|
|
|
|
url='https://wagtail.io/',
|
2014-02-07 18:12:06 +00:00
|
|
|
|
packages=find_packages(),
|
|
|
|
|
include_package_data=True,
|
2014-02-07 15:39:59 +00:00
|
|
|
|
license='BSD',
|
2018-03-14 13:59:02 +00: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\
|
2019-11-08 09:15:01 +00:00
|
|
|
|
For more details, see https://wagtail.io, https://docs.wagtail.io and \
|
2018-03-14 13:59:02 +00:00
|
|
|
|
https://github.com/wagtail/wagtail/.",
|
2014-02-07 15:39:59 +00:00
|
|
|
|
classifiers=[
|
2014-09-22 20:11:22 +00:00
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
2014-02-07 15:39:59 +00:00
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
|
'Programming Language :: Python',
|
2014-07-03 12:06:23 +00:00
|
|
|
|
'Programming Language :: Python :: 3',
|
2017-04-07 15:52:31 +00:00
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2018-10-17 16:30:34 +00:00
|
|
|
|
'Programming Language :: Python :: 3.7',
|
2019-10-15 15:30:58 +00:00
|
|
|
|
'Programming Language :: Python :: 3.8',
|
2020-11-02 17:29:58 +00:00
|
|
|
|
'Programming Language :: Python :: 3.9',
|
2014-02-07 15:39:59 +00:00
|
|
|
|
'Framework :: Django',
|
2019-04-01 17:56:31 +00:00
|
|
|
|
'Framework :: Django :: 2.2',
|
2019-12-17 12:51:23 +00:00
|
|
|
|
'Framework :: Django :: 3.0',
|
2020-08-06 00:43:01 +00:00
|
|
|
|
'Framework :: Django :: 3.1',
|
2018-06-16 20:03:39 +00:00
|
|
|
|
'Framework :: Wagtail',
|
2014-02-07 15:39:59 +00:00
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Site Management',
|
|
|
|
|
],
|
2020-08-29 20:19:37 +00:00
|
|
|
|
python_requires='>=3.6',
|
2014-07-01 13:35:10 +00:00
|
|
|
|
install_requires=install_requires,
|
2016-02-03 01:56:48 +00:00
|
|
|
|
extras_require={
|
|
|
|
|
'testing': testing_extras,
|
|
|
|
|
'docs': documentation_extras
|
|
|
|
|
},
|
2014-06-19 11:16:22 +00:00
|
|
|
|
entry_points="""
|
|
|
|
|
[console_scripts]
|
2014-07-31 09:31:00 +00:00
|
|
|
|
wagtail=wagtail.bin.wagtail:main
|
2014-06-19 11:16:22 +00:00
|
|
|
|
""",
|
2014-02-07 18:12:06 +00:00
|
|
|
|
zip_safe=False,
|
2015-04-23 01:11:49 +00:00
|
|
|
|
cmdclass={
|
2015-10-05 10:51:04 +00:00
|
|
|
|
'sdist': sdist,
|
2015-04-23 23:34:16 +00:00
|
|
|
|
'bdist_egg': check_bdist_egg,
|
2015-04-23 01:11:49 +00:00
|
|
|
|
'assets': assets,
|
|
|
|
|
},
|
2014-02-07 15:39:59 +00:00
|
|
|
|
)
|