forked from coderedcorp/wagtail-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
45 lines (41 loc) · 1.26 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""The setup script."""
from setuptools import setup, find_packages
from wagtailcache import __version__
with open('README.md') as readme_file:
readme = readme_file.read()
setup(
name='wagtail-cache',
version=__version__,
author="CodeRed LLC",
author_email='info@coderedcorp.com',
url='https://github.com/coderedcorp/wagtail-cache',
description="A simple page cache for Wagtail using 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'
],
extras_require={
'dev': [
'pylint-django',
'sphinx',
'twine',
],
},
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Framework :: Django',
'Framework :: Django :: 2.0',
'Framework :: Wagtail',
'Framework :: Wagtail :: 2',
],
)