generated from cisagov/ScubaGear
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
37 lines (33 loc) · 1.2 KB
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "scubagoggles"
dynamic = ["version"]
classifiers = ["Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Topic :: Security",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"]
dependencies = ["dnspython>=2.6.1",
"google-api-python-client>=2.142.0",
"google-auth-httplib2>=0.2.0",
"google-auth-oauthlib>=1.2.1",
"MarkupSafe>=2.1.5",
"pyyaml>=6.0.2",
"requests>=2.32.3",
"tqdm>=4.66.5"]
requires-python = ">= 3.9"
description='SCuBA security baseline assessment tool'
authors = [{name = "CISA"}]
license = {file = "LICENSE"}
readme = "README.md"
[project.scripts]
scubagoggles = "scubagoggles.main:dive"
[tool.setuptools.dynamic]
version = {attr = "scubagoggles.__version__"}
[tool.setuptools.packages.find]
where = ["."]