2014-02-03 17:14:46 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2014-07-01 13:35:10 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
# Hack to prevent stupid TypeError: 'NoneType' object is not callable error on
|
|
|
|
# exit of python setup.py test # in multiprocessing/util.py _exit_function when
|
|
|
|
# running python setup.py test (see
|
|
|
|
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
|
|
|
|
try:
|
|
|
|
import multiprocessing
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2014-07-01 13:35:10 +00:00
|
|
|
PY3 = sys.version_info[0] == 3
|
|
|
|
|
|
|
|
|
|
|
|
install_requires = [
|
|
|
|
"Django>=1.6.2,<1.7",
|
|
|
|
"South>=0.8.4",
|
2014-07-09 08:28:05 +00:00
|
|
|
"django-compressor>=1.4",
|
|
|
|
"django-libsass>=0.2",
|
|
|
|
"django-modelcluster>=0.3",
|
2014-07-01 13:35:10 +00:00
|
|
|
"django-taggit==0.11.2",
|
|
|
|
"django-treebeard==2.0",
|
|
|
|
"Pillow>=2.3.0",
|
|
|
|
"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",
|
2014-07-02 09:22:08 +00:00
|
|
|
"six==1.7.3",
|
2014-07-02 16:22:19 +00:00
|
|
|
'requests==2.3.0',
|
2014-07-01 13:35:10 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
if not PY3:
|
|
|
|
install_requires += [
|
|
|
|
"unicodecsv>=0.9.4"
|
|
|
|
]
|
|
|
|
|
|
|
|
|
2014-02-03 17:14:46 +00:00
|
|
|
setup(
|
2014-02-03 17:26:22 +00:00
|
|
|
name='wagtail',
|
2014-07-10 11:57:56 +00:00
|
|
|
version='0.4',
|
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=[
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
'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',
|
|
|
|
'Programming Language :: Python :: 2.6',
|
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',
|
|
|
|
'Programming Language :: Python :: 3.2',
|
2014-07-02 16:17:25 +00:00
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Programming Language :: Python :: 3.4',
|
2014-02-07 15:39:59 +00:00
|
|
|
'Framework :: Django',
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Site Management',
|
|
|
|
],
|
2014-07-01 13:35:10 +00:00
|
|
|
install_requires=install_requires,
|
2014-02-07 18:12:06 +00:00
|
|
|
zip_safe=False,
|
2014-02-07 15:39:59 +00:00
|
|
|
)
|