-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
executable file
·41 lines (34 loc) · 1010 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
34
35
36
37
38
39
40
41
#!/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.6.0',
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>=1.0',
'requests>=2.9.1',
'celery>=4.0,<5'
],
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',
],
)