bronzeburner/pyproject.toml

25 lines
545 B
TOML
Raw Normal View History

[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" }
dependencies = ["sh>=2.0.6", "rocketry>=2.5.1"]
[project.scripts]
bronzeburner = "bronzeburner.cli:run"
[tool.setuptools]
py-modules = ["bronzeburner"]
[tool.bandit]
exclude_dirs = ["/doc", "/build"]
[tool.black]
line-length = 120