Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added initial configurations #644

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "nettacker"
version = "0.0.3"
description = "Automated Penetration Testing Framework - Open-Source Vulnerability Scanner - Vulnerability Management"
readme = "README.md"
requires-python = ">=3.0"
license = {text = "Apache License 2.0"}
dependencies = [
"argparse==1.4.0",
"netaddr==0.8.0",
"ipaddr==2.2.0",
"requests==2.28.1",
"aiohttp==3.8.3",
"asyncio==3.4.3",
"paramiko==2.12.0",
"texttable==1.6.7",
"PySocks==1.7.1" ,
"pyOpenSSL==22.1.0 ",
"flask==2.2.2",
"SQLAlchemy>=1.3.0",
"py3DNS==3.2.1" ,
"numpy==1.24.1",
"terminable_thread==0.7.1",
"PyYAML==6.0" ,
]

23 changes: 23 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[metadata]
name = nettacker
version = 0.0.3
author = OWASP
description = Automated Penetration Testing Framework - Open-Source Vulnerability Scanner - Vulnerability Management
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/OWASP/Nettacker
project_urls =
Bug Tracker = https://github.com/OWASP/Nettacker/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache-2.0 license
Operating System :: OS Independent

[options]
package_dir =
= .
packages = find:
python_requires = >=3.0

[options.packages.find]
where = .