-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (29 loc) · 1.01 KB
/
publish.yml
File metadata and controls
33 lines (29 loc) · 1.01 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "nagoyaspray"
version = "1.1.0"
requires-python = ">=3.6"
authors = [
{name = "strikoder", email = "your.email@example.com"}
]
description = "CTF-focused password spray wordlist generator for OSCP/PNPT/CPTS"
readme = "README.md"
keywords = ["password-spray", "wordlist-generator", "oscp", "pentesting", "ctf", "active-directory", "pnpt", "cpts"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/strikoder/NagoyaSpray"
Repository = "https://github.com/strikoder/NagoyaSpray"
Issues = "https://github.com/strikoder/NagoyaSpray/issues"
[project.scripts]
nagoyaspray = "nagoyaspray:main"
[tool.setuptools]
py-modules = ["nagoyaspray"]