-
Notifications
You must be signed in to change notification settings - Fork 57
/
setup.py
executable file
·46 lines (43 loc) · 1.37 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/usr/bin/env python
"""
Install wagtailvideos using setuptools
"""
with open("README.rst", "r") as f:
readme = f.read()
from setuptools import find_packages, setup # noqa: E4
setup(
name="wagtailvideos",
version="7.0.2",
description="A wagtail module for uploading and displaying videos in various codecs.",
long_description=readme,
author="Neon Jungle",
author_email="[email protected]",
url="https://github.com/neon-jungle/wagtailvideos",
install_requires=[
"wagtail>=6.1",
"Django>=3.2",
"bcp47==0.0.4",
"wagtail-modeladmin>=2.0.0",
],
zip_safe=False,
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Wagtail",
"Framework :: Wagtail :: 6",
"License :: OSI Approved :: BSD License",
],
)