-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (56 loc) · 1.84 KB
/
Copy pathsetup.py
File metadata and controls
61 lines (56 loc) · 1.84 KB
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
52
53
54
55
56
57
58
59
60
61
"""
setup.py
────────
Makes NetScan Pro installable as a package:
pip install -e . # editable / development install
netscan --help # CLI entry point registered by pip
The console_scripts entry point wires `netscan` → `main:main`
so the tool runs from anywhere in the user's PATH after install.
"""
from setuptools import find_packages, setup
with open("README.md", encoding="utf-8") as fh:
long_description = fh.read() if __import__("os").path.exists("README.md") else ""
setup(
name="netscan-pro",
version="1.0.0",
author="NetScan Pro",
description="A professional modular network scanner for pentesters and security auditors",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.10",
packages=find_packages(exclude=["tests*", "docs*"]),
install_requires=[
"rich>=13.7.0",
"scapy>=2.5.0",
"dnspython>=2.4.0",
"Jinja2>=3.1.2",
],
extras_require={
"dev": [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-mock>=3.12.0",
"pytest-cov>=4.1.0",
"ruff>=0.3.0",
]
},
entry_points={
"console_scripts": [
"netscan=main:main",
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: System :: Networking",
],
)