2014-02-03 17:14:46 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
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-02-03 17:14:46 +00:00
|
|
|
setup(
|
2014-02-03 17:26:22 +00:00
|
|
|
name='wagtail',
|
2014-03-11 16:40:04 +00:00
|
|
|
version='0.2',
|
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',
|
|
|
|
'Framework :: Django',
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Site Management',
|
|
|
|
],
|
|
|
|
install_requires=[
|
2014-03-11 11:26:48 +00:00
|
|
|
"Django>=1.6.2,<1.7",
|
2014-02-07 15:39:59 +00:00
|
|
|
"South>=0.8.4",
|
|
|
|
"django-compressor>=1.3",
|
2014-03-05 20:02:54 +00:00
|
|
|
"django-libsass>=0.1",
|
2014-02-07 15:39:59 +00:00
|
|
|
"django-modelcluster>=0.1",
|
2014-04-22 08:58:19 +00:00
|
|
|
"django-taggit==0.11.2",
|
2014-04-22 08:50:18 +00:00
|
|
|
"django-treebeard==2.0",
|
2014-02-07 15:39:59 +00:00
|
|
|
"Pillow>=2.3.0",
|
|
|
|
"beautifulsoup4>=4.3.2",
|
|
|
|
"lxml>=3.3.0",
|
2014-03-10 15:17:57 +00:00
|
|
|
'Unidecode>=0.04.14',
|
2014-02-07 15:39:59 +00:00
|
|
|
"BeautifulSoup==3.2.1", # django-compressor gets confused if we have lxml but not BS3 installed
|
|
|
|
],
|
2014-02-07 18:12:06 +00:00
|
|
|
zip_safe=False,
|
2014-02-07 15:39:59 +00:00
|
|
|
)
|