bronzeburner/pyproject.toml
Darryl Nixon e3072150d9 * feat(README.md): add detailed project information and installation instructions
* feat(cli.py): add command line arguments and async main function
* feat(influx.py): add InfluxDB class for handling InfluxDB operations
* feat(logs.py): add logger configuration
* feat(scan.py): add functions for running rustscan and parsing its output
* feat(validation.py): add function for validating CIDR or IPv4 address
* fix(pyproject.toml): update dependencies
* fix(README.md): change 'Examples' to 'Example'
* fix(bronzeburner.png): update image file
* fix(cli.py): update main function
* fix(scan.py): update run_rustscan function to use asyncio
*
2023-09-06 18:02:12 -07:00

24 lines
548 B
TOML

[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 = ["aiohttp>=3.8.5", "loguru>=0.7.1"]
[project.scripts]
bronzeburner = "bronzeburner.cli:run"
[tool.setuptools]
py-modules = ["bronzeburner"]
[tool.bandit]
exclude_dirs = ["/doc", "/build"]
[tool.black]
line-length = 120