2
0

setup.py 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  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,<4.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. # for validating string formats in .po translation files
  60. 'polib>=1.1,<2.0',
  61. ]
  62. # Documentation dependencies
  63. documentation_extras = [
  64. 'pyenchant>=3.1.1,<4',
  65. 'sphinxcontrib-spelling>=5.4.0,<6',
  66. 'Sphinx>=1.5.2',
  67. 'sphinx-autobuild>=0.6.0',
  68. 'sphinx-wagtail-theme==5.0.4',
  69. 'recommonmark>=0.7.1',
  70. ]
  71. setup(
  72. name='wagtail',
  73. version=__version__,
  74. description='A Django content management system.',
  75. author='Wagtail core team + contributors',
  76. author_email='hello@wagtail.io', # For support queries, please see https://docs.wagtail.io/en/stable/support.html
  77. url='https://wagtail.io/',
  78. packages=find_packages(),
  79. include_package_data=True,
  80. license='BSD',
  81. long_description="Wagtail is an open source content management \
  82. system built on Django, with a strong community and commercial support. \
  83. It’s focused on user experience, and offers precise control for \
  84. designers and developers.\n\n\
  85. For more details, see https://wagtail.io, https://docs.wagtail.io and \
  86. https://github.com/wagtail/wagtail/.",
  87. classifiers=[
  88. 'Development Status :: 5 - Production/Stable',
  89. 'Environment :: Web Environment',
  90. 'Intended Audience :: Developers',
  91. 'License :: OSI Approved :: BSD License',
  92. 'Operating System :: OS Independent',
  93. 'Programming Language :: Python',
  94. 'Programming Language :: Python :: 3',
  95. 'Programming Language :: Python :: 3.6',
  96. 'Programming Language :: Python :: 3.7',
  97. 'Programming Language :: Python :: 3.8',
  98. 'Programming Language :: Python :: 3.9',
  99. 'Programming Language :: Python :: 3.10',
  100. 'Framework :: Django',
  101. 'Framework :: Django :: 3.0',
  102. 'Framework :: Django :: 3.1',
  103. 'Framework :: Django :: 3.2',
  104. 'Framework :: Wagtail',
  105. 'Topic :: Internet :: WWW/HTTP :: Site Management',
  106. ],
  107. python_requires='>=3.6',
  108. install_requires=install_requires,
  109. extras_require={
  110. 'testing': testing_extras,
  111. 'docs': documentation_extras
  112. },
  113. entry_points="""
  114. [console_scripts]
  115. wagtail=wagtail.bin.wagtail:main
  116. """,
  117. zip_safe=False,
  118. cmdclass={
  119. 'sdist': sdist,
  120. 'bdist_egg': check_bdist_egg,
  121. 'assets': assets,
  122. },
  123. )