Files
datediff/pyproject.toml
Кокос Артем Николаевич 004acf99d9 Initial commit
2026-01-21 15:58:31 +07:00

23 lines
618 B
TOML

[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "datediff"
version = "1.0.0"
description = "CLI utility to compute difference between two dates in days and full years"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Artem Kokos", email = "artem-kokos@mail.com" }]
requires-python = ">=3.7"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Utilities",
]
[project.scripts]
datediff = "datediff:main"