-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (40 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
47 lines (40 loc) · 1.04 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
[project]
name = "pysqlrecon"
version = "0.3.1"
description = "Offensive MSSQL Python toolkit"
authors = [{ name = "Matt Creel", email = "mcreel31@gmail.com" }]
requires-python = ">=3.11,<4"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"rich>=12.5.1,<13",
"typer>=0.6.1,<0.7",
"impacket>=0.11.0,<0.12",
"pycryptodome>=3.20.0,<4",
]
[project.urls]
Homepage = "https://github.com/tw1sm/pysqlrecon"
Repository = "https://github.com/tw1sm/pysqlrecon"
[project.scripts]
pysqlrecon = "pysqlrecon.__main__:app"
[dependency-groups]
dev = [
"ruff>=0.0.235,<0.0.236",
"pytest>=7.2.1,<8",
"pre-commit>=3.0.1,<4",
]
[tool.uv]
default-groups = "all"
[tool.uv.build-backend]
module-root = ""
[build-system]
requires = ["uv_build>=0.10.9,<0.11.0"]
build-backend = "uv_build"
[tool.ruff]
ignore = ["E501"]