-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
pyproject.toml
40 lines (34 loc) · 871 Bytes
/
pyproject.toml
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
[project]
name = "apachetomcatscanner"
version = "3.7.1"
description = ""
dynamic = ["scripts"]
readme = "README.md"
requires-python = ">=3.6"
license = { text = "GPL2"}
authors = [
{ email = "podalirius@protonmail.com" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
]
dependencies = [
"sectools>=1.3.10",
"xlsxwriter",
"urllib3==1.26.16",
"requests==2.29.0"
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
repository = "https://github.com/p0dalirius/ApacheTomcatScanner"
[project.optional-dependencies]
build = ["build"]
twine = ["twine"]
[tool.setuptools.packages.find]
include = ["apachetomcatscanner*"]
[tool.setuptools.package-data]
"*" = ["*"]