2014-02-03 18:14:46 +01:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
2015-04-23 03:11:49 +02:00
|
|
|
|
import sys
|
2014-07-01 15:35:10 +02:00
|
|
|
|
|
2016-08-18 06:49:19 +02:00
|
|
|
|
from wagtail import __version__
|
2015-10-05 12:51:04 +02:00
|
|
|
|
from wagtail.utils.setup import assets, sdist, check_bdist_egg
|
2014-07-01 15:35:10 +02:00
|
|
|
|
|
2014-02-07 16:39:59 +01:00
|
|
|
|
try:
|
2014-02-07 19:12:06 +01:00
|
|
|
|
from setuptools import setup, find_packages
|
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:
|
|
|
|
|
import multiprocessing
|
|
|
|
|
except ImportError:
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
2014-07-01 15:35:10 +02:00
|
|
|
|
install_requires = [
|
2019-04-01 19:56:31 +02:00
|
|
|
|
"Django>=2.0,<2.3",
|
2018-08-08 16:52:22 +02:00
|
|
|
|
"django-modelcluster>=4.2,<5.0",
|
|
|
|
|
"django-taggit>=0.23,<0.24",
|
2017-12-13 17:07:50 +01:00
|
|
|
|
"django-treebeard>=4.2.0,<5.0",
|
2018-03-02 10:48:14 +01:00
|
|
|
|
"djangorestframework>=3.7.4,<4.0",
|
2018-11-20 17:14:36 +01:00
|
|
|
|
"draftjs_exporter>=2.1.5,<3.0",
|
2018-03-05 17:39:34 +01:00
|
|
|
|
"Pillow>=4.0.0,<6.0",
|
2018-08-13 15:58:35 +02:00
|
|
|
|
"beautifulsoup4>=4.5.1,<4.6.1",
|
2018-04-12 12:56:50 +02:00
|
|
|
|
"html5lib>=0.999,<2",
|
2018-06-15 16:09:34 +02:00
|
|
|
|
"Unidecode>=0.04.14,<2.0",
|
2017-10-06 13:28:56 +02:00
|
|
|
|
"Willow>=1.1,<1.2",
|
2016-11-08 20:23:35 +01:00
|
|
|
|
"requests>=2.11.1,<3.0",
|
2018-08-06 13:48:27 +02:00
|
|
|
|
"pytz>=2016.6", # for l18n
|
|
|
|
|
"six>=1.11,<2.0", # for l18n
|
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
|
|
|
|
|
'python-dateutil>=2.2',
|
|
|
|
|
'pytz>=2014.7',
|
2016-10-20 11:51:29 +02:00
|
|
|
|
'elasticsearch>=1.0.0,<3.0',
|
2016-05-17 18:34:15 +02:00
|
|
|
|
'Jinja2>=2.8,<3.0',
|
2016-12-05 19:19:15 +01:00
|
|
|
|
'boto3>=1.4,<1.5',
|
2017-05-06 05:22:38 +02:00
|
|
|
|
'freezegun>=0.3.8',
|
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',
|
2017-06-02 13:23:49 +02:00
|
|
|
|
'isort==4.2.5',
|
2017-03-01 13:21:34 +01:00
|
|
|
|
'flake8-blind-except==0.1.1',
|
|
|
|
|
'flake8-print==2.0.2',
|
2016-02-03 02:56:48 +01:00
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
# Documentation dependencies
|
|
|
|
|
documentation_extras = [
|
2017-02-21 14:46:21 +01:00
|
|
|
|
'pyenchant==1.6.8',
|
2016-12-07 19:51:35 +01:00
|
|
|
|
'sphinxcontrib-spelling>=2.3.0',
|
2017-02-21 14:46:21 +01:00
|
|
|
|
'Sphinx>=1.5.2',
|
|
|
|
|
'sphinx-autobuild>=0.6.0',
|
|
|
|
|
'sphinx_rtd_theme>=0.1.9',
|
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',
|
|
|
|
|
author_email='hello@wagtail.io', # For support queries, please see http://docs.wagtail.io/en/stable/support.html
|
2014-02-03 18:14:46 +01:00
|
|
|
|
url='http://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\
|
|
|
|
|
For more details, see https://wagtail.io, http://docs.wagtail.io and \
|
|
|
|
|
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',
|
2014-07-02 18:17:25 +02:00
|
|
|
|
'Programming Language :: Python :: 3.4',
|
2015-11-05 17:19:52 +01:00
|
|
|
|
'Programming Language :: Python :: 3.5',
|
2017-04-07 17:52:31 +02:00
|
|
|
|
'Programming Language :: Python :: 3.6',
|
2018-10-17 18:30:34 +02:00
|
|
|
|
'Programming Language :: Python :: 3.7',
|
2014-02-07 16:39:59 +01:00
|
|
|
|
'Framework :: Django',
|
2017-12-03 01:58:23 +01:00
|
|
|
|
'Framework :: Django :: 2.0',
|
2018-08-08 17:04:28 +02:00
|
|
|
|
'Framework :: Django :: 2.1',
|
2019-04-01 19:56:31 +02:00
|
|
|
|
'Framework :: Django :: 2.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',
|
|
|
|
|
],
|
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
|
|
|
|
)
|