24 lines
619 B
TOML
24 lines
619 B
TOML
[project]
|
|
name = "histd"
|
|
version = "0.0.2"
|
|
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"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|