-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
61 lines (52 loc) · 2.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright 2009-2020 Andrew Kershaw
# This file is part of sitecheck.
# Sitecheck is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# Sitecheck is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with sitecheck. If not, see <http://www.gnu.org/licenses/>.
from distutils.core import setup
from sitecheck.core import VERSION, CONTACT_EMAIL
setup(name='sitecheck',
version=VERSION,
description='Modular web site spider for web developers',
author='Andrew Kershaw',
author_email=CONTACT_EMAIL,
url='https://github.com/arkershaw/sitecheck',
packages=['sitecheck'],
scripts=['runsitecheck.py', 'domaincheck.py'],
package_data={'sitecheck': ['dict.txt', 'scrape.js']},
long_description='''Spiders a website and logs many common problems including missing resources (HTTP 400), server
errors (HTTP 500), slow pages, looping redirects, missing meta tags, duplicate content and potential SQL
injection/cross-site scripting (XSS) vulnerabilities. Various informational modules are also available including
the logging of email addresses, IP addresses, comments in the HTML, spelling mistakes, W3C validation errors,
accessibility issues, and low scores on the Flesch Reading Ease test.''',
download_url='https://github.com/arkershaw/sitecheck/releases',
license='GNU Affero General Public License v3',
platforms=['Any'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8.1',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Internet :: WWW/HTTP :: Site Management :: Link Checking',
'Topic :: Security',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Testing',
'Topic :: System :: Archiving :: Mirroring',
'Topic :: System :: Systems Administration',
'Topic :: Text Processing :: Markup :: HTML'
])