2023-05-23 14:33:32 -07:00
|
|
|
[build-system]
|
2023-05-23 17:14:49 -07:00
|
|
|
requires = ["setuptools>=67.8"]
|
2023-05-23 14:33:32 -07:00
|
|
|
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"
|
2023-05-23 17:14:49 -07:00
|
|
|
license = { text = "MIT" }
|
|
|
|
dependencies = [
|
|
|
|
"fastapi>=0.95.2",
|
|
|
|
"uvicorn>=0.22.0",
|
|
|
|
"loguru>=0.7.0",
|
|
|
|
"passlib>=1.7.4",
|
|
|
|
"pydantic>=1.10.8",
|
|
|
|
]
|
2023-05-23 14:33:32 -07:00
|
|
|
|
|
|
|
[project.scripts]
|
2023-05-23 17:14:49 -07:00
|
|
|
ghostforge_serve = "ghostforge.cli:start_api"
|
2023-05-23 14:33:32 -07:00
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
"Homepage" = "https://github.com/DarrylNixon/ghostforge"
|
|
|
|
"Bug Tracker" = "https://github.com/DarrylNixon/ghostforge/issues"
|
|
|
|
|
|
|
|
[tool.bandit]
|
2023-05-23 17:14:49 -07:00
|
|
|
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"]
|
2023-05-23 14:33:32 -07:00
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 120
|