histd/pyproject.toml

28 lines
670 B
TOML
Raw Normal View History

2022-12-16 21:36:48 +05:00
[project]
name = "histd"
2022-12-23 22:22:05 +05:00
version = "0.0.4"
2022-12-16 21:36:48 +05:00
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"
2022-12-23 22:14:01 +05:00
[project.scripts]
2022-12-23 22:22:05 +05:00
histd = "histd.cli:main"
2022-12-23 22:14:01 +05:00
2022-12-16 21:36:48 +05:00
[build-system]
2022-12-23 22:14:01 +05:00
requires = ["setuptools"]
build-backend = "setuptools.build_meta"