27 lines
671 B
TOML
27 lines
671 B
TOML
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[project]
|
|
name = "codupoc"
|
|
version = "1.0.0"
|
|
authors = [
|
|
{ name="Andrew Luchuk", email="andrew.luchuk@outlook.com" }
|
|
]
|
|
description = "A TUI for managing todo items in Markdown format"
|
|
readme = "readme.md"
|
|
license = {file = "LICENSE"}
|
|
keywords = ["tui", "markdown", "todo"]
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"Environment :: Console",
|
|
"Topic :: Utilities"
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.luchuktech.space/Andrew/codupoc"
|
|
Repository = "https://git.luchuktech.space/Andrew/codupoc"
|
|
|
|
[project.scripts]
|
|
codupoc = "codupoc:main"
|