-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (36 loc) · 1.16 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "target-ports"
version = "2.1"
description = "Scan ports of a target"
requires-python = ">3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
dependencies = [
'termcolor',
'optioner>=1.4.5'
]
keywords = ['d33pster', 'port scanner', 'port', 'scanner', 'recon', 'portscanner', 'target-ports', 'targetports']
readme = {file = "README.md", content-type = "text/markdown"}
license = { file = "LICENSE" }
authors = [
{name = "Soumyo Deep Gupta", email = "[email protected]"}
]
maintainers = [
{name = "Soumyo Deep Gupta", email = "[email protected]"}
]
[project.scripts]
tports='target_ports.target_ports:main'
[project.urls]
GitHub = 'https://github.com/d33pster/target-ports'
Issues = 'https://github.com/d33pster/target-ports/issues'
Documentation = 'https://d33pster.github.io/target-ports/'