mirror of
https://github.com/DarrylNixon/ghostforge
synced 2024-04-22 06:27:20 -07:00
30 lines
704 B
TOML
30 lines
704 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
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"
|
|
dependencies = ["tornado", "queries"]
|
|
license = "MIT"
|
|
|
|
[project.scripts]
|
|
ghostforge_serve = "ghostforge.cli:service"
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/DarrylNixon/ghostforge"
|
|
"Bug Tracker" = "https://github.com/DarrylNixon/ghostforge/issues"
|
|
|
|
[tool.bandit]
|
|
exclude_dirs = ["/doc"]
|
|
skips = []
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
|
|
[tool.isort]
|
|
profile = "black"
|