wagtail/setup.py

56 wiersze
1.7 KiB
Python
Czysty Zwykły widok Historia

2014-02-03 17:14:46 +00:00
#!/usr/bin/env python
2014-02-07 15:39:59 +00:00
try:
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
# 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/',
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',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
install_requires=[
"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-02-13 10:53:58 +00:00
"django-taggit>=0.11.2",
2014-02-07 15:39:59 +00:00
"Pillow>=2.3.0",
"beautifulsoup4>=4.3.2",
"lxml>=3.3.0",
'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
],
zip_safe=False,
2014-02-07 15:39:59 +00:00
)