-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.26 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlmap-gui"
version = "1.1.0"
description = "PyQt5 desktop GUI for running sqlmap with a friendly interface."
readme = "README.md"
requires-python = ">=3.8"
authors = [
{ name = "Md. Rasel Mandol" }
]
keywords = ["sqlmap", "gui", "pyqt", "security", "pentest"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Security",
"Topic :: Software Development :: User Interfaces"
]
dependencies = [
"PyQt5>=5.15"
]
[project.scripts]
sqlmap-gui = "sqlmap_gui.main:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["sqlmap_gui", "sqlmap_gui.*"]
[tool.setuptools.package-data]
sqlmap_gui = ["resources/icon.png"]