forked from neon-jungle/wagtail-linkchecker
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (30 loc) · 998 Bytes
/
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
#!/usr/bin/env python
"""
Install wagtail-linkchecker using setuptools
"""
with open("README.rst", "r") as f:
readme = f.read()
from setuptools import find_packages, setup
setup(
name="wagtail-linkchecker",
version="0.7.1",
description="A tool to assist with finding broken links on your wagtail site.",
long_description=readme,
author="Neon Jungle",
author_email="[email protected]",
url="https://github.com/neon-jungle/wagtail-linkchecker/",
install_requires=["wagtail>=5.0,<6", "requests>=2.9.1", "django-background-tasks>=1.2.5,<3"],
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",
"Framework :: Django",
"License :: OSI Approved :: BSD License",
],
)