2023-09-05 20:51:23 -07:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=68.1.2"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "bronzeburner"
|
|
|
|
version = "0.0.1"
|
|
|
|
authors = [{ name = "Darryl Nixon", email = "git@nixon.mozmail.com" }]
|
|
|
|
description = "A humble network scanner"
|
|
|
|
requires-python = ">=3.9"
|
|
|
|
license = { text = "AGPL 3.0" }
|
2023-09-06 18:02:12 -07:00
|
|
|
dependencies = ["aiohttp>=3.8.5", "loguru>=0.7.1"]
|
2023-09-05 20:51:23 -07:00
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
bronzeburner = "bronzeburner.cli:run"
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
py-modules = ["bronzeburner"]
|
|
|
|
|
|
|
|
[tool.bandit]
|
|
|
|
exclude_dirs = ["/doc", "/build"]
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 120
|