25 lines
437 B
TOML
25 lines
437 B
TOML
[project]
|
|
name = "maildirclean"
|
|
version = "0.1.0"
|
|
description = "Add your description here"
|
|
readme = "README.md"
|
|
authors = [
|
|
{ name = "Alex Selimov", email = "alex@alexselimov.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"pandas>=2.2.3",
|
|
]
|
|
|
|
[project.scripts]
|
|
maildirclean = "maildirclean:main"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.3.5",
|
|
]
|