23 lines
618 B
TOML
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"
|