2023-07-15 13:08:04 -07:00
|
|
|
[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" }
|
2023-07-16 10:25:25 -07:00
|
|
|
dependencies = [
|
|
|
|
"loguru==0.7.0",
|
|
|
|
"aiofiles==23.1.0",
|
|
|
|
"uvloop==0.17.0",
|
|
|
|
"asyncstdlib==3.10.8",
|
|
|
|
"psutil==5.9.5",
|
|
|
|
]
|
2023-07-15 13:08:04 -07:00
|
|
|
|
|
|
|
[project.scripts]
|
2023-07-16 09:34:37 -07:00
|
|
|
melamine = "melamine.cli:run"
|
2023-07-15 13:08:04 -07:00
|
|
|
|
|
|
|
[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"]
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 120
|