forked from coderedcorp/wagtail-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.22 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
from setuptools import setup, find_packages
from wagtailcache import __version__
with open("README.md", encoding="utf8") as readme_file:
readme = readme_file.read()
setup(
name="wagtail-cache",
version=__version__,
author="CodeRed LLC",
author_email="[email protected]",
url="https://github.com/coderedcorp/wagtail-cache",
description="A simple page cache for Wagtail based on the Django cache middleware.",
long_description=readme,
long_description_content_type="text/markdown",
license="BSD license",
include_package_data=True,
packages=find_packages(),
install_requires=["wagtail>=2.0"],
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Framework :: Django",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Wagtail",
"Framework :: Wagtail :: 2",
],
)