forked from mozilla/http-observatory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (41 loc) · 1.41 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
#!/usr/bin/env python3
import os
from httpobs import SOURCE_URL, VERSION
from setuptools import setup, find_packages
__dirname = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(__dirname, 'README.md')) as readme:
README = readme.read()
setup(
name='httpobs',
version=VERSION,
description='HTTP Observatory: a set of tests and tools to scan your website for basic web hygeine.',
url=SOURCE_URL,
long_description=README,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Flask',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Natural Language :: English',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Security',
'Topic :: Software Development :: Quality Assurance',
],
author='April King',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
install_requires = [
'beautifulsoup4',
'celery',
'publicsuffixlist',
'requests',
],
scripts=['httpobs/scripts/httpobs-local-scan',
'httpobs/scripts/httpobs-mass-scan',
'httpobs/scripts/httpobs-scan-worker'],
zip_safe=False,
)