You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
723 B

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pykban"
version = "0.0.1"
authors = [
{ name="Alex Selimov", email="alex@alexselimov.com"}
]
description = "A simple TUI implementation of a kanban board"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Environment :: Console"
]
[project.urls]
Homepage = "https://alexselimov.com/git/aselimov/pykanban"
Issues = "https://github.com/aselimov/PyKanban/issues"
[project.scripts]
pykban = "pykban.tui:run_tui"