-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
48 lines (47 loc) · 1.6 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
from setuptools import setup
setup(
name="NetbiosSpoof",
version="1.1.2",
py_modules=["NetbiosSpoof"],
install_requires=["scapy"],
author="Maurice Lambert",
author_email="mauricelambert434@gmail.com",
maintainer="Maurice Lambert",
maintainer_email="mauricelambert434@gmail.com",
description="This package implements a Hostname Spoofer (Netbios, LLMNR and Local DNS).",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/mauricelambert/NetbiosSpoof",
project_urls={
"Documentation": "https://mauricelambert.github.io/info/python/security/NetbiosSpoof.html",
"Executable": "https://mauricelambert.github.io/info/python/security/NetbiosSpoof.pyz",
},
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Topic :: System :: Networking",
"Topic :: Security",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
],
python_requires=">=3.6",
entry_points={
"console_scripts": ["NetbiosSpoof = NetbiosSpoof:main"],
},
keywords=[
"netbios",
"spoofer",
"hostname",
"network",
"security",
"NBNS",
"LLMNR",
"MDNS",
"Local DNS",
],
platforms=["Windows", "Linux", "MacOS"],
license="GPL-3.0 License",
)