-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (49 loc) · 1.63 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
import WebPayloadsEncodings as package
from setuptools import setup
setup(
name=package.__name__,
version=package.__version__,
py_modules=[package.__name__],
install_requires=[],
author=package.__author__,
author_email=package.__author_email__,
maintainer=package.__maintainer__,
maintainer_email=package.__maintainer_email__,
description=package.__description__,
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url=package.__url__,
project_urls={
"Documentation": "https://mauricelambert.github.io/info/python/security/WebPayloadsEncodings.html",
"Executable": "https://mauricelambert.github.io/info/python/security/WebPayloadsEncodings.pyz",
},
classifiers=[
"Topic :: Security",
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Build Tools",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
entry_points={
"console_scripts": [
"WebPayloadsEncodings = WebPayloadsEncodings:main",
],
},
python_requires=">=3.8",
keywords=[
"Web",
"Payloads",
"Encodings",
"CTF",
"Hacking",
"Security",
],
platforms=["Windows", "Linux", "MacOS"],
license=package.__license__,
)