setup.py 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. #!/usr/bin/env python
  2. from wagtail import __version__
  3. from wagtail.utils.setup import assets, check_bdist_egg, sdist
  4. try:
  5. from setuptools import find_packages, setup
  6. except ImportError:
  7. from distutils.core import setup
  8. # Hack to prevent "TypeError: 'NoneType' object is not callable" error
  9. # in multiprocessing/util.py _exit_function when setup.py exits
  10. # (see http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
  11. try:
  12. import multiprocessing # noqa
  13. except ImportError:
  14. pass
  15. install_requires = [
  16. "Django>=3.0,<3.3",
  17. "django-modelcluster>=5.2,<6.0",
  18. "django-taggit>=1.0,<2.0",
  19. "django-treebeard>=4.2.0,<5.0,!=4.5",
  20. "djangorestframework>=3.11.1,<4.0",
  21. "django-filter>=2.2,<3.0",
  22. "draftjs_exporter>=2.1.5,<3.0",
  23. "Pillow>=4.0.0,<9.0.0",
  24. "beautifulsoup4>=4.8,<4.10",
  25. "html5lib>=0.999,<2",
  26. "Willow>=1.4,<1.5",
  27. "requests>=2.11.1,<3.0",
  28. "l18n>=2018.5",
  29. "xlsxwriter>=1.2.8,<2.0",
  30. "tablib[xls,xlsx]>=0.14.0",
  31. "anyascii>=0.1.5",
  32. "telepath>=0.1.1,<1",
  33. ]
  34. # Testing dependencies
  35. testing_extras = [
  36. # Required for running the tests
  37. 'python-dateutil>=2.7',
  38. 'pytz>=2014.7',
  39. 'elasticsearch>=5.0,<6.0',
  40. 'Jinja2>=2.11,<3.0',
  41. 'boto3>=1.16,<1.17',
  42. 'freezegun>=0.3.8',
  43. 'openpyxl>=2.6.4',
  44. 'Unidecode>=0.04.14,<2.0',
  45. # For coverage and PEP8 linting
  46. 'coverage>=3.7.0',
  47. 'flake8>=3.6.0',
  48. 'isort==5.6.4', # leave this pinned - it tends to change rules between patch releases
  49. 'flake8-blind-except==0.1.1',
  50. 'flake8-print==2.0.2',
  51. 'doc8==0.8.1',
  52. # For templates linting
  53. 'jinjalint>=0.5',
  54. # Pipenv hack to fix broken dependency causing CircleCI failures
  55. 'docutils==0.15',
  56. # django-taggit 1.3.0 made changes to verbose_name which affect migrations;
  57. # the test suite migrations correspond to >=1.3.0
  58. 'django-taggit>=1.3.0,<2.0',
  59. ]
  60. # Documentation dependencies
  61. documentation_extras = [
  62. 'pyenchant>=3.1.1,<4',
  63. 'sphinxcontrib-spelling>=5.4.0,<6',
  64. 'Sphinx>=1.5.2',
  65. 'sphinx-autobuild>=0.6.0',
  66. 'sphinx-wagtail-theme==5.0.4',
  67. 'recommonmark>=0.7.1',
  68. ]
  69. setup(
  70. name='wagtail',
  71. version=__version__,
  72. description='A Django content management system.',
  73. author='Wagtail core team + contributors',
  74. author_email='hello@wagtail.io', # For support queries, please see https://docs.wagtail.io/en/stable/support.html
  75. url='https://wagtail.io/',
  76. packages=find_packages(),
  77. include_package_data=True,
  78. license='BSD',
  79. long_description="Wagtail is an open source content management \
  80. system built on Django, with a strong community and commercial support. \
  81. It’s focused on user experience, and offers precise control for \
  82. designers and developers.\n\n\
  83. For more details, see https://wagtail.io, https://docs.wagtail.io and \
  84. https://github.com/wagtail/wagtail/.",
  85. classifiers=[
  86. 'Development Status :: 5 - Production/Stable',
  87. 'Environment :: Web Environment',
  88. 'Intended Audience :: Developers',
  89. 'License :: OSI Approved :: BSD License',
  90. 'Operating System :: OS Independent',
  91. 'Programming Language :: Python',
  92. 'Programming Language :: Python :: 3',
  93. 'Programming Language :: Python :: 3.6',
  94. 'Programming Language :: Python :: 3.7',
  95. 'Programming Language :: Python :: 3.8',
  96. 'Programming Language :: Python :: 3.9',
  97. 'Framework :: Django',
  98. 'Framework :: Django :: 3.0',
  99. 'Framework :: Django :: 3.1',
  100. 'Framework :: Django :: 3.2',
  101. 'Framework :: Wagtail',
  102. 'Topic :: Internet :: WWW/HTTP :: Site Management',
  103. ],
  104. python_requires='>=3.6',
  105. install_requires=install_requires,
  106. extras_require={
  107. 'testing': testing_extras,
  108. 'docs': documentation_extras
  109. },
  110. entry_points="""
  111. [console_scripts]
  112. wagtail=wagtail.bin.wagtail:main
  113. """,
  114. zip_safe=False,
  115. cmdclass={
  116. 'sdist': sdist,
  117. 'bdist_egg': check_bdist_egg,
  118. 'assets': assets,
  119. },
  120. )