-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
49 lines (46 loc) · 1.48 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
#!/bin/env python3
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="headerexposer",
version="0.8a15",
author="Alexandre Janvrin",
author_email="[email protected]",
description="Analyse the security of your website's headers!",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/LivinParadoX/headerexposer",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU Affero General Public License v3 or"
" later (AGPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Education :: Testing",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Security",
],
keywords="http headers security analysis owasp recommendations best"
" practices",
python_requires=">=3.7",
install_requires=[
"ansiwrap",
"colorama",
"jsonschema",
"requests",
"tabulate",
"urllib3",
],
entry_points={
"console_scripts": [
"headerexposer=headerexposer.__main__:main",
],
},
include_package_data=True,
)