Initial commit

This commit is contained in:
Кокос Артем Николаевич
2026-01-21 15:58:31 +07:00
commit 004acf99d9
4 changed files with 153 additions and 0 deletions

22
pyproject.toml Normal file
View File

@@ -0,0 +1,22 @@
[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"