-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 856 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 856 Bytes
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"]
build-backend = "setuptools.build_meta"
[project]
name = "dorkbot"
version = "1.10.0+git"
authors = [
{ name = "John Gordon", email = "jgor@utexas.edu" }
]
description = "Command-line tool to scan search results for vulnerabilities"
readme = {file = "README.md", content-type = "text/markdown"}
license = {file = "LICENSE"}
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: Free for non-commercial use",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "http://dorkbot.io"
GitHub = "https://github.com/utiso/dorkbot"
[project.scripts]
dorkbot = "dorkbot.dorkbot:main"
[project.optional-dependencies]
postgresql = [
"psycopg[binary]>=3.2.13",
]
wapiti = [
"wapiti3>=3.1.4",
]
[dependency-groups]
dev = [
"pytest>=8.3.5",
]