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 = [
|
2023-05-25 18:33:08 -07:00
|
|
|
"fastapi==0.95.2",
|
|
|
|
"uvicorn==0.22.0",
|
|
|
|
"loguru==0.7.0",
|
|
|
|
"passlib==1.7.4",
|
|
|
|
"pydantic==1.10.8",
|
|
|
|
"alembic==1.11.1",
|
|
|
|
"asyncpg==0.27.0",
|
|
|
|
"greenlet==2.0.2",
|
|
|
|
"jinja2==3.1.2",
|
2023-05-26 11:25:42 -07:00
|
|
|
"fastapi-users==11.0.0",
|
2023-05-26 22:54:02 -07:00
|
|
|
"fastapi-users-db-sqlmodel==0.3.0",
|
|
|
|
"sqlmodel==0.0.8",
|
2023-05-28 19:49:54 -07:00
|
|
|
"markdown==3.4.3",
|
2023-06-02 19:08:43 -07:00
|
|
|
"faker==18.9.0",
|
2023-05-23 17:14:49 -07:00
|
|
|
]
|
2023-05-23 14:33:32 -07:00
|
|
|
|
2023-05-28 21:41:15 -07:00
|
|
|
[project.scripts]
|
|
|
|
ghostforge_adduser = "ghostforge.cli:cli_create_user"
|
|
|
|
|
2023-05-23 14:33:32 -07:00
|
|
|
[project.urls]
|
2023-05-25 18:33:08 -07:00
|
|
|
homepage = "https://github.com/DarrylNixon/ghostforge"
|
|
|
|
repository = "https://github.com/DarrylNixon/ghostforge"
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
py-modules = ["ghostforge"]
|
2023-05-23 14:33:32 -07:00
|
|
|
|
|
|
|
[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
|