[build-system] requires = ["setuptools>=67.8"] build-backend = "setuptools.build_meta" [project] name = "melamine" version = "0.0.1" authors = [{ name = "pdf", email = "git@nixon.mozmail.com" }] description = "A comprehensive file shredder for Linux" readme = "README.md" requires-python = ">=3.9" license = { text = "MIT" } dependencies = ["fastapi==0.95.2"] [project.scripts] ghostforge_adduser = "melamine.cli:run" [project.urls] homepage = "https://github.com/DarrylNixon/melamine" repository = "https://github.com/DarrylNixon/melamine" [tool.setuptools] py-modules = ["melamine"] [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