Initial commit
This commit is contained in:
22
pyproject.toml
Normal file
22
pyproject.toml
Normal 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"
|
||||
Reference in New Issue
Block a user