2014-02-03 18:14:46 +01:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-09-10 18:37:57 +02:00
|
|
|
import sys, os
|
2014-07-01 15:35:10 +02:00
|
|
|
|
2015-02-18 13:56:29 +01:00
|
|
|
from wagtail.wagtailcore import __version__
|
2014-09-09 13:57:01 +02:00
|
|
|
|
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-09-10 18:37:57 +02:00
|
|
|
# Disable parallel builds, because Pillow 2.5.3 does some crazy monkeypatching of
|
|
|
|
# the build process on multicore systems, which breaks installation of libsass
|
|
|
|
os.environ['MAX_CONCURRENCY'] = '1'
|
|
|
|
|
2014-07-01 15:35:10 +02:00
|
|
|
PY3 = sys.version_info[0] == 3
|
|
|
|
|
|
|
|
|
|
|
|
install_requires = [
|
2015-03-17 15:49:29 +01:00
|
|
|
"Django>=1.7.1,<1.8",
|
2014-07-09 10:28:05 +02:00
|
|
|
"django-compressor>=1.4",
|
2015-03-24 14:17:44 +01:00
|
|
|
"django-libsass>=0.2",
|
2015-02-03 12:11:42 +01:00
|
|
|
"django-modelcluster>=0.5",
|
2015-03-04 10:47:40 +01:00
|
|
|
"django-taggit==0.12.3",
|
2015-01-29 14:19:19 +01:00
|
|
|
"django-treebeard==3.0",
|
2015-03-24 14:17:44 +01:00
|
|
|
"Pillow>=2.6.1",
|
2014-07-01 15:35:10 +02:00
|
|
|
"beautifulsoup4>=4.3.2",
|
2014-07-11 17:40:36 +02:00
|
|
|
"html5lib==0.999",
|
2014-07-01 15:35:10 +02:00
|
|
|
"Unidecode>=0.04.14",
|
2014-10-13 13:08:36 +02:00
|
|
|
"six>=1.7.0",
|
|
|
|
'requests>=2.0.0',
|
2015-04-01 15:08:51 +02:00
|
|
|
"Willow==0.2b2",
|
2014-07-01 15:35:10 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
if not PY3:
|
|
|
|
install_requires += [
|
|
|
|
"unicodecsv>=0.9.4"
|
|
|
|
]
|
|
|
|
|
|
|
|
|
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__,
|
2014-02-07 16:39:59 +01:00
|
|
|
description='A Django content management system focused on flexibility and user experience',
|
2014-02-03 18:14:46 +01:00
|
|
|
author='Matthew Westcott',
|
|
|
|
author_email='matthew.westcott@torchbox.com',
|
|
|
|
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',
|
|
|
|
long_description=open('README.rst').read(),
|
|
|
|
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-04-30 10:58:03 +02:00
|
|
|
'Programming Language :: Python :: 2',
|
2014-02-07 16:39:59 +01:00
|
|
|
'Programming Language :: Python :: 2.7',
|
2014-07-03 14:06:23 +02:00
|
|
|
'Programming Language :: Python :: 3',
|
2014-07-02 18:17:25 +02:00
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
2014-02-07 16:39:59 +01:00
|
|
|
'Framework :: Django',
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Site Management',
|
|
|
|
],
|
2014-07-01 15:35:10 +02:00
|
|
|
install_requires=install_requires,
|
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,
|
2014-02-07 16:39:59 +01:00
|
|
|
)
|