forked from coderedcorp/wagtail-seo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.12 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
from setuptools import setup
from wagtailseo import __version__
with open("README.md", encoding="utf8") as readme_file:
readme = readme_file.read()
setup(
name="wagtail-seo",
version=__version__,
author="CodeRed LLC",
author_email="[email protected]",
url="https://github.com/coderedcorp/wagtail-seo",
description="Search engine and social media optimization for Wagtail.",
long_description=readme,
long_description_content_type="text/markdown",
license="BSD license",
include_package_data=True,
packages=["wagtailseo"],
python_requires=">=3.6",
install_requires=["wagtail>=3.0,<4.0"],
classifiers=[
"Framework :: Django",
"Framework :: Wagtail",
"Framework :: Wagtail :: 2",
"Framework :: Wagtail :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP :: Site Management",
],
)