-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
51 lines (50 loc) · 1.68 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
51
from setuptools import setup
setup(
name="NetworkScanner",
version="2.0.0",
py_modules=["NetworkScanner"],
install_requires=["PythonToolsKit"],
author="Maurice Lambert",
author_email="mauricelambert434@gmail.com",
maintainer="Maurice Lambert",
maintainer_email="mauricelambert434@gmail.com",
description="This module implements a NetworkScanner.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
include_package_data=True,
url="https://github.com/mauricelambert/NetworkScanner",
project_urls={
"Documentation": "https://mauricelambert.github.io/info/python/security/NetworkScanner.html",
"Executable": "https://mauricelambert.github.io/info/python/security/NetworkScanner.pyz",
},
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Natural Language :: English",
"Topic :: System :: Networking",
"Topic :: Security",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
],
entry_points={
"console_scripts": ["NetworkScan = NetworkScanner:main"],
},
python_requires=">=3.8",
keywords=[
"Network",
"Scanner",
"Discovery",
"Host",
"Ping",
"nmap",
"Security",
"Scapy",
"ARP",
],
platforms=["Windows", "Linux", "MacOS"],
license="GPL-3.0 License",
)