2014-02-03 17:14:46 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2015-04-23 01:11:49 +00:00
|
|
|
import sys
|
2014-07-01 13:35:10 +00:00
|
|
|
|
2015-02-18 12:56:29 +00:00
|
|
|
from wagtail.wagtailcore import __version__
|
2015-10-05 10:51:04 +00:00
|
|
|
from wagtail.utils.setup import assets, sdist, check_bdist_egg
|
2014-07-01 13:35:10 +00:00
|
|
|
|
2014-02-07 15:39:59 +00:00
|
|
|
try:
|
2014-02-07 18:12:06 +00:00
|
|
|
from setuptools import setup, find_packages
|
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:
|
|
|
|
import multiprocessing
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2014-07-01 13:35:10 +00:00
|
|
|
install_requires = [
|
2015-04-27 14:25:05 +00:00
|
|
|
"Django>=1.7.1,<1.9",
|
2014-07-09 08:28:05 +00:00
|
|
|
"django-compressor>=1.4",
|
2015-10-09 14:47:49 +00:00
|
|
|
"django-modelcluster>=1.0",
|
2015-04-10 13:01:09 +00:00
|
|
|
"django-taggit>=0.13.0",
|
2015-01-29 13:19:19 +00:00
|
|
|
"django-treebeard==3.0",
|
2015-08-26 16:02:33 +00:00
|
|
|
"djangorestframework>=3.1.3",
|
2015-03-24 13:17:44 +00:00
|
|
|
"Pillow>=2.6.1",
|
2014-07-01 13:35:10 +00:00
|
|
|
"beautifulsoup4>=4.3.2",
|
2014-07-11 15:40:36 +00:00
|
|
|
"html5lib==0.999",
|
2014-07-01 13:35:10 +00:00
|
|
|
"Unidecode>=0.04.14",
|
2015-11-13 12:39:31 +00:00
|
|
|
"Willow>=0.2.2,<0.3",
|
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__,
|
2014-02-07 15:39:59 +00:00
|
|
|
description='A Django content management system focused on flexibility and user experience',
|
2014-02-03 17:14:46 +00:00
|
|
|
author='Matthew Westcott',
|
|
|
|
author_email='matthew.westcott@torchbox.com',
|
|
|
|
url='http://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',
|
|
|
|
long_description=open('README.rst').read(),
|
|
|
|
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-04-30 08:58:03 +00:00
|
|
|
'Programming Language :: Python :: 2',
|
2014-02-07 15:39:59 +00:00
|
|
|
'Programming Language :: Python :: 2.7',
|
2014-07-03 12:06:23 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
2014-07-02 16:17:25 +00:00
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
2015-11-05 16:19:52 +00:00
|
|
|
'Programming Language :: Python :: 3.5',
|
2014-02-07 15:39:59 +00:00
|
|
|
'Framework :: Django',
|
2015-11-11 22:37:30 +00:00
|
|
|
'Framework :: Django :: 1.7',
|
|
|
|
'Framework :: Django :: 1.8',
|
2014-02-07 15:39:59 +00:00
|
|
|
'Topic :: Internet :: WWW/HTTP :: Site Management',
|
|
|
|
],
|
2014-07-01 13:35:10 +00:00
|
|
|
install_requires=install_requires,
|
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
|
|
|
)
|