-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (33 loc) · 1 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
from setuptools import setup, find_packages
with open("./README.md") as f:
long_description = f.read()
setup(
name='sech3r',
version='4.9',
author="Captain Nick Lucifer",
author_email="naryal2580@gmail.com",
url="https://github.com/naryal2580/sech3r",
download_url='https://github.com/naryal2580/sech3r/tarball/master',
description="HTTP Security Header Checker",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
py_modules=['sech3r'],
install_requires=[
'stoyled',
'docopt'
],
classifiers=[
"Programming Language :: Python :: 3",
'Environment :: Console',
"License :: OSI Approved :: MIT License",
'Topic :: Security',
"Operating System :: OS Independent",
],
python_requires='>=3',
entry_points={
'console_scripts': [
'sech3r = sech3r:run',
],
}
)