histd/pyproject.toml

28 lines
670 B
TOML

[project]
name = "histd"
version = "0.0.4"
authors = [
{ name="Ivan Reshetnikov", email="ordinarydev@protonmail.com" },
]
description = "A simple but useful personal diary application"
readme = "readme.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Topic :: Utilities",
]
[project.urls]
"Homepage" = "https://github.com/ordinary-dev/histd"
"Bug Tracker" = "https://github.com/ordinary-dev/histd/issues"
[project.scripts]
histd = "histd.cli:main"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"