Commit 4f7c599d authored by Seb's avatar Seb
Browse files

Version bump + moved mock to extra requires

parent 0706503e
...@@ -10,7 +10,7 @@ from setuptools import find_packages, setup ...@@ -10,7 +10,7 @@ from setuptools import find_packages, setup
setup( setup(
name='wagtailvideos', name='wagtailvideos',
version='0.1.10', version='0.1.11',
description="A wagtail module for uploading and displaying videos in various codecs.", description="A wagtail module for uploading and displaying videos in various codecs.",
long_description=readme, long_description=readme,
author='Takeflight', author='Takeflight',
...@@ -20,8 +20,12 @@ setup( ...@@ -20,8 +20,12 @@ setup(
install_requires=[ install_requires=[
'wagtail>=1.4', 'wagtail>=1.4',
'django-enumchoicefield==0.6.0', 'django-enumchoicefield==0.6.0',
'mock==2.0.0'
], ],
extras_require={
'testing': [
'mock==2.0.0'
]
},
zip_safe=False, zip_safe=False,
license='BSD License', license='BSD License',
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment