-
Notifications
You must be signed in to change notification settings - Fork 125
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (26 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
32 lines (26 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "authprobe"
version = "1.0.0"
description = "OpenAPI-driven, multi-identity BOLA/IDOR authorization scanner for recruitment (and other) APIs."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [{ name = "Jay Barach", email = "jbarach2012@users.noreply.github.com" }]
keywords = ["security", "bola", "idor", "authorization", "api-security", "dast", "owasp", "ats", "hr-tech"]
dependencies = ["requests>=2.28", "pyyaml>=6.0"]
[project.optional-dependencies]
demo = ["fastapi>=0.110", "uvicorn[standard]>=0.27"]
test = ["fastapi>=0.110", "uvicorn[standard]>=0.27", "pytest>=7.4"]
[project.scripts]
authprobe = "authprobe.cli:main"
[project.urls]
Homepage = "https://github.com/jbarach2012/AuthProbe"
Repository = "https://github.com/jbarach2012/AuthProbe"
[tool.setuptools.packages.find]
include = ["authprobe*", "targets*"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]