Commit f1be0478 authored by Seb's avatar Seb
Browse files

update minor version for 4.1 fix

parent 2c510b0d
......@@ -3,49 +3,41 @@
Install wagtailvideos using setuptools
"""
with open('README.rst', 'r') as f:
with open("README.rst", "r") as f:
readme = f.read()
from setuptools import find_packages, setup # noqa: E4
setup(
name='wagtailvideos',
version='4.0.1',
name="wagtailvideos",
version="4.1.0",
description="A wagtail module for uploading and displaying videos in various codecs.",
long_description=readme,
author='Neon Jungle',
author_email='developers@neonjungle.studio',
url='https://github.com/neon-jungle/wagtailvideos',
author="Neon Jungle",
author_email="developers@neonjungle.studio",
url="https://github.com/neon-jungle/wagtailvideos",
install_requires=[
'wagtail>=4.0',
'Django>=3.2',
'django-enumchoicefield>=1.1.0',
'bcp47==0.0.4',
"wagtail>=4.0",
"Django>=3.2",
"django-enumchoicefield>=1.1.0",
"bcp47==0.0.4",
],
extras_require={
'testing': [
'mock==2.0.0'
]
},
extras_require={"testing": ["mock==2.0.0"]},
zip_safe=False,
license='BSD License',
license="BSD License",
packages=find_packages(),
include_package_data=True,
package_data={},
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Framework :: Django",
"License :: OSI Approved :: 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