ghostforge/pyproject.toml
2023-05-23 17:14:49 -07:00

34 lines
899 B
TOML

[build-system]
requires = ["setuptools>=67.8"]
build-backend = "setuptools.build_meta"
[project]
name = "ghostforge"
version = "0.0.1"
authors = [{ name = "ghostforge", email = "git@nixon.mozmail.com" }]
description = "A false identity information manager for privacy prudent persons"
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
dependencies = [
"fastapi>=0.95.2",
"uvicorn>=0.22.0",
"loguru>=0.7.0",
"passlib>=1.7.4",
"pydantic>=1.10.8",
]
[project.scripts]
ghostforge_serve = "ghostforge.cli:start_api"
[project.urls]
"Homepage" = "https://github.com/DarrylNixon/ghostforge"
"Bug Tracker" = "https://github.com/DarrylNixon/ghostforge/issues"
[tool.bandit]
exclude_dirs = ["/doc", "/build"]
# TODO: Stop skipping B104 (binding on 0.0.0.0), is there a nice way to get a good docker bind address?
skips = ["B104"]
[tool.black]
line-length = 120