7

fixes a few future imports and adds support for new python and wagtail versions

This commit is contained in:
blurrah
2017-05-03 08:58:05 +02:00
parent 6640bf8d74
commit 82d11d57aa
3 changed files with 17 additions and 9 deletions

View File

@ -2,7 +2,7 @@ from setuptools import find_packages, setup
install_requires = [
'wagtail>=1.7',
'wagtail<=1.10',
'user-agents>=1.0.1',
]
@ -16,6 +16,10 @@ tests_require = [
'wagtail_factories==0.2.0',
]
docs_require = [
'sphinx>=1.4.0',
]
setup(
name='wagtail-personalisation',
version='0.1.0',
@ -26,6 +30,7 @@ setup(
install_requires=install_requires,
tests_require=tests_require,
extras_require={
'docs': docs_require,
'test': tests_require,
},
packages=find_packages('src'),
@ -39,13 +44,17 @@ setup(
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
)