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

124 lines
3.5 KiB
Python
Raw Normal View History

2014-02-03 18:14:46 +01:00
#!/usr/bin/env python
import sys
from wagtail import __version__
from wagtail.utils.setup import assets, sdist, check_bdist_egg
2014-02-07 16:39:59 +01:00
try:
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
# 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:
import multiprocessing
except ImportError:
pass
install_requires = [
2019-04-01 19:56:31 +02:00
"Django>=2.0,<2.3",
"django-modelcluster>=5.0,<6.0",
"django-taggit>=1.0,<2.0",
2017-12-13 17:07:50 +01:00
"django-treebeard>=4.2.0,<5.0",
"djangorestframework>=3.7.4,<4.0",
"draftjs_exporter>=2.1.5,<3.0",
"Pillow>=4.0.0,<7.0.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",
"Willow>=1.3,<1.4",
"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
]
# 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',
'Jinja2>=2.8,<3.0',
'boto3>=1.4,<1.5',
'freezegun>=0.3.8',
# 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',
'flake8-blind-except==0.1.1',
'flake8-print==2.0.2',
# For templates linting
'jinjalint>=0.5',
# Pipenv hack to fix broken dependency causing CircleCI failures
'docutils==0.15',
]
# Documentation dependencies
documentation_extras = [
'pyenchant==1.6.8',
'sphinxcontrib-spelling>=2.3.0',
'Sphinx>=1.5.2',
'sphinx-autobuild>=0.6.0',
'sphinx_rtd_theme>=0.1.9',
]
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.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/',
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.io, http://docs.wagtail.io and \
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',
2015-11-05 17:19:52 +01:00
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
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',
2014-02-07 16:39:59 +01:00
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
2019-04-01 19:56:31 +02:00
'Framework :: Django :: 2.2',
'Framework :: Wagtail',
2014-02-07 16:39:59 +01:00
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
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
)