31 lines
844 B
TOML
31 lines
844 B
TOML
[build-system]
|
|
requires = ["setuptools>=68", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "rspamd-mail-trainer"
|
|
version = "0.1.0"
|
|
description = "Find Maildir/mbox messages and train Rspamd as spam or ham."
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
license = { text = "MIT" }
|
|
authors = [
|
|
{ name = "Johannes Rest" }
|
|
]
|
|
keywords = ["rspamd", "maildir", "mbox", "spam", "ham", "mail"]
|
|
classifiers = [
|
|
"Environment :: Console",
|
|
"Intended Audience :: System Administrators",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Communications :: Email :: Filters",
|
|
"Topic :: System :: Systems Administration"
|
|
]
|
|
|
|
[project.scripts]
|
|
rspamd-mail-trainer = "rspamd_mail_trainer.cli:main"
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["src"]
|