melamine/pyproject.toml

37 lines
804 B
TOML
Raw Normal View History

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 = "Comprehensive DoD 5220.22-M-compliant file shredder for Linux"
2023-07-15 13:08:04 -07:00
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-16 12:59:30 -07:00
"aiopath==0.6.11",
2023-07-16 10:25:25 -07:00
]
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